mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
14 lines
265 B
Ruby
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
|