diff options
| author | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-10-26 21:13:27 +0200 |
|---|---|---|
| committer | Oswaldo Ferreira <oswaldo@gitlab.com> | 2017-10-26 21:13:27 +0200 |
| commit | 7a534231493f7f4220995b3accc92d4d002a6fa5 (patch) | |
| tree | 9a4d055bc2b851ffefdd89a41ecc8eb71495c5b0 /app/models/project.rb | |
| parent | 9931ef4a8a9fa9544729fe39cb3572d278819c8d (diff) | |
| download | gitlab-ce-37698-current-settings-singleton.tar.gz | |
WIP: Replace current settings module inclusion by "singleton"37698-current-settings-singleton
Diffstat (limited to 'app/models/project.rb')
| -rw-r--r-- | app/models/project.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 4689b588906..c3191336024 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -4,7 +4,7 @@ class Project < ActiveRecord::Base include Gitlab::ConfigHelper include Gitlab::ShellAdapter include Gitlab::VisibilityLevel - include Gitlab::CurrentSettings + # include Gitlab::CurrentSettings include AccessRequestable include Avatarable include CacheMarkdownField @@ -20,7 +20,7 @@ class Project < ActiveRecord::Base include GroupDescendant extend Gitlab::ConfigHelper - extend Gitlab::CurrentSettings + # extend Gitlab::CurrentSettings BoardLimitExceeded = Class.new(StandardError) |
