discourse/app/serializers/reviewable_settings_serializer.rb
Robin Ward 62956003c3 FEATURE: Allow users to customize bonuses for reviewable types
A new settings section in the review queue allows admins to specify that
certain types of flags should be weighted higher than others.
2019-04-03 11:18:34 -04:00

14 lines
265 B
Ruby

class ReviewableSettingsSerializer < ApplicationSerializer
attributes :id
has_many :reviewable_score_types, serializer: ReviewableScoreTypeSerializer
def id
scope.user.id
end
def reviewable_score_types
object[:reviewable_score_types]
end
end