mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 13:43:16 +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
|