diff --git a/app/serializers/basic_group_serializer.rb b/app/serializers/basic_group_serializer.rb index 8004e7ccdc3..3fee36fcba5 100644 --- a/app/serializers/basic_group_serializer.rb +++ b/app/serializers/basic_group_serializer.rb @@ -134,23 +134,11 @@ class BasicGroupSerializer < ApplicationSerializer [:watching, :regular, :tracking, :watching_first_post, :muted].each do |level| define_method("#{level}_category_ids") do - @group_category_notification_defaults ||= begin - GroupCategoryNotificationDefault.where(group: object).pluck(:category_id) - end - - @group_category_notification_defaults.filter do |default| - default.notification_level == NotificationLevels.all[level] - end + GroupCategoryNotificationDefault.lookup(object, level).pluck(:category_id) end define_method("#{level}_tags") do - @group_tag_notification_defaults ||= begin - GroupTagNotificationDefault.where(group: object).joins(:tag).pluck('tags.name') - end - - @group_tag_notification_defaults.filter do |default| - default.notification_level == NotificationLevels.all[level] - end + GroupTagNotificationDefault.lookup(object, level).joins(:tag).pluck('tags.name') end end