Commit 9f6a8ff4b55a44c6f02ecffbba8d0a108794931a
1 parent
466f0fb7
Exists in
spb-stable
and in
3 other branches
Modify project default values
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/models/project.rb
... | ... | @@ -31,10 +31,10 @@ class Project < ActiveRecord::Base |
31 | 31 | |
32 | 32 | default_value_for :archived, false |
33 | 33 | default_value_for :issues_enabled, true |
34 | - default_value_for :wall_enabled, false | |
34 | + default_value_for :wall_enabled, true | |
35 | 35 | default_value_for :merge_requests_enabled, true |
36 | 36 | default_value_for :wiki_enabled, true |
37 | - default_value_for :snippets_enabled, false | |
37 | + default_value_for :snippets_enabled, true | |
38 | 38 | |
39 | 39 | ActsAsTaggableOn.strict_case_match = true |
40 | 40 | ... | ... |