Commit 65664725b37e6122d227852126d8dc23c93d3102

Authored by Jacob Vosmaer
2 parents 0d41aef1 6fdff505

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
files/gitlab-cookbooks/gitlab/templates/default/gitlab.yml.erb
... ... @@ -41,7 +41,7 @@ production: &amp;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
... ...