Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/models')
-rw-r--r--app/models/member.rb7
-rw-r--r--app/models/notification_setting.rb11
2 files changed, 12 insertions, 6 deletions
diff --git a/app/models/member.rb b/app/models/member.rb
index cbcc54c0250..747d0f16d8d 100644
--- a/app/models/member.rb
+++ b/app/models/member.rb
@@ -163,12 +163,7 @@ class Member < ActiveRecord::Base
end
def create_notification_setting
- notification_setting = user.notification_settings.find_or_initialize_by(source: source)
-
- unless notification_setting.persisted?
- notification_setting.set_defaults
- notification_setting.save
- end
+ user.notification_setting.find_or_create_for(source)
end
def notification_setting
diff --git a/app/models/notification_setting.rb b/app/models/notification_setting.rb
index 287862a01bc..13a8995b036 100644
--- a/app/models/notification_setting.rb
+++ b/app/models/notification_setting.rb
@@ -15,6 +15,17 @@ class NotificationSetting < ActiveRecord::Base
scope :for_groups, -> { where(source_type: 'Namespace') }
scope :for_projects, -> { where(source_type: 'Project') }
+ def self.find_or_create_for(source)
+ setting = find_or_initialize_by(source: source)
+
+ unless setting.persisted?
+ setting.set_defaults
+ setting.save
+ end
+
+ setting
+ end
+
def set_defaults
self.level = :global
end