mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 02:43:43 +08:00
17 lines
296 B
Ruby
17 lines
296 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApiKeySerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
:key,
|
|
:last_used_at,
|
|
:created_at
|
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
|
|
def include_user_id?
|
|
!object.user_id.nil?
|
|
end
|
|
|
|
end
|