summaryrefslogtreecommitdiff
path: root/app/services/projects/move_notification_settings_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/projects/move_notification_settings_service.rb')
-rw-r--r--app/services/projects/move_notification_settings_service.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/projects/move_notification_settings_service.rb b/app/services/projects/move_notification_settings_service.rb
index 109a00dd6d9..e740c44bd26 100644
--- a/app/services/projects/move_notification_settings_service.rb
+++ b/app/services/projects/move_notification_settings_service.rb
@@ -31,10 +31,12 @@ module Projects
end
# Look for notification_settings in source_project that are not in the target project
+ # rubocop: disable CodeReuse/ActiveRecord
def non_existent_notifications
source_project.notification_settings
.select(:id)
.where.not(user_id: users_in_target_project)
end
+ # rubocop: enable CodeReuse/ActiveRecord
end
end