Commit 65664725b37e6122d227852126d8dc23c93d3102
Exists in
master
and in
15 other branches
Merge branch 'fix_gitlab_default_projects_limit' into 'master'
Fix Gitlab Default Projects Limit hardcoded limit to variable https://gitlab.com/gitlab-org/omnibus-gitlab/issues/81 This merge replaces the the hard coded 10 with <%= @gitlab_default_projects_limit %> in files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb
... | ... | @@ -41,7 +41,7 @@ production: &base |
41 | 41 | support_email: <%= @gitlab_support_email %> |
42 | 42 | |
43 | 43 | ## User settings |
44 | - default_projects_limit: 10 | |
44 | + default_projects_limit: <%= @gitlab_default_projects_limit %> | |
45 | 45 | default_can_create_group: <%= @gitlab_default_can_create_group %> # default: true |
46 | 46 | username_changing_enabled: <%= @username_changing_enabled %> # default: true - User can change her username/namespace |
47 | 47 | ## Default theme | ... | ... |