mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:08:35 +08:00
13 lines
211 B
Ruby
13 lines
211 B
Ruby
|
class ApiKeySerializer < ApplicationSerializer
|
||
|
|
||
|
attributes :id,
|
||
|
:key
|
||
|
|
||
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
||
|
|
||
|
def include_user_id?
|
||
|
!object.user_id.nil?
|
||
|
end
|
||
|
|
||
|
end
|