FIX: Include default notification level in category serializer (#9572)

Fixes an issue where the notification level state goes missing when user edits a category in the UI.
This commit is contained in:
Penar Musaraj 2020-04-28 12:05:53 -04:00 committed by GitHub
parent c1c211365a
commit b19dcac272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 2 deletions

View File

@ -83,8 +83,9 @@ class CategorySerializer < SiteCategorySerializer
def notification_level
user = scope && scope.user
object.notification_level ||
(user && CategoryUser.where(user: user, category: object).first.try(:notification_level))
object.notification_level ||
(user && CategoryUser.where(user: user, category: object).first.try(:notification_level)) ||
CategoryUser.default_notification_level
end
def custom_fields

View File

@ -28,4 +28,19 @@ describe CategorySerializer do
json = described_class.new(category, scope: Guardian.new, root: false).as_json
expect(json[:custom_fields]).to be_present
end
it "includes the default notification level" do
json = described_class.new(category, scope: Guardian.new, root: false).as_json
expect(json[:notification_level]).to eq(CategoryUser.default_notification_level)
end
describe "user notification level" do
fab!(:user) { Fabricate(:user) }
it "includes the user's notification level" do
CategoryUser.set_notification_level_for_category(user, NotificationLevels.all[:watching], category.id)
json = described_class.new(category, scope: Guardian.new(user), root: false).as_json
expect(json[:notification_level]).to eq(NotificationLevels.all[:watching])
end
end
end