mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 09:24:37 +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
|