mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:53:23 +08:00
7 lines
171 B
Ruby
7 lines
171 B
Ruby
|
class UserBadgeSerializer < ApplicationSerializer
|
||
|
attributes :id, :granted_at
|
||
|
|
||
|
has_one :badge
|
||
|
has_one :granted_by, serializer: BasicUserSerializer, root: :users
|
||
|
end
|