Commit f5b549af2545942c925c92cb148e5ad5efd459b1
1 parent
7907bc81
Exists in
master
and in
4 other branches
Wall and snippets were disabled by default
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
config/gitlab.yml.example
| @@ -42,8 +42,8 @@ production: &base | @@ -42,8 +42,8 @@ production: &base | ||
| 42 | issues: true | 42 | issues: true |
| 43 | merge_requests: true | 43 | merge_requests: true |
| 44 | wiki: true | 44 | wiki: true |
| 45 | - wall: true | ||
| 46 | - snippets: true | 45 | + wall: false |
| 46 | + snippets: false | ||
| 47 | 47 | ||
| 48 | ## External issues trackers | 48 | ## External issues trackers |
| 49 | issues_tracker: | 49 | issues_tracker: |
config/initializers/1_settings.rb
| @@ -64,8 +64,8 @@ Settings.gitlab['default_projects_features'] ||= {} | @@ -64,8 +64,8 @@ Settings.gitlab['default_projects_features'] ||= {} | ||
| 64 | Settings.gitlab.default_projects_features['issues'] = true if Settings.gitlab.default_projects_features['issues'].nil? | 64 | Settings.gitlab.default_projects_features['issues'] = true if Settings.gitlab.default_projects_features['issues'].nil? |
| 65 | Settings.gitlab.default_projects_features['merge_requests'] = true if Settings.gitlab.default_projects_features['merge_requests'].nil? | 65 | Settings.gitlab.default_projects_features['merge_requests'] = true if Settings.gitlab.default_projects_features['merge_requests'].nil? |
| 66 | Settings.gitlab.default_projects_features['wiki'] = true if Settings.gitlab.default_projects_features['wiki'].nil? | 66 | Settings.gitlab.default_projects_features['wiki'] = true if Settings.gitlab.default_projects_features['wiki'].nil? |
| 67 | -Settings.gitlab.default_projects_features['wall'] = true if Settings.gitlab.default_projects_features['wall'].nil? | ||
| 68 | -Settings.gitlab.default_projects_features['snippets'] = true if Settings.gitlab.default_projects_features['snippets'].nil? | 67 | +Settings.gitlab.default_projects_features['wall'] = false if Settings.gitlab.default_projects_features['wall'].nil? |
| 68 | +Settings.gitlab.default_projects_features['snippets'] = false if Settings.gitlab.default_projects_features['snippets'].nil? | ||
| 69 | 69 | ||
| 70 | # | 70 | # |
| 71 | # Gravatar | 71 | # Gravatar |