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/note.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/note.rb')
-rw-r--r-- | app/models/note.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/note.rb b/app/models/note.rb index 8939e590ef1..1ae58a471a9 100644 --- a/app/models/note.rb +++ b/app/models/note.rb @@ -3,7 +3,7 @@ # A note of this type is never resolvable. class Note < ActiveRecord::Base extend ActiveModel::Naming - include Gitlab::CurrentSettings + # include Gitlab::CurrentSettings include Participable include Mentionable include Awardable |