discourse/app/serializers/api_key_serializer.rb
David Taylor 52c5cf33f8
FEATURE: Overhaul of admin API key system (#8284)
- Allow revoking keys without deleting them
- Auto-revoke keys after a period of no use (default 6 months)
- Allow multiple keys per user
- Allow attaching a description to each key, for easier auditing
- Log changes to keys in the staff action log
- Move all key management to one place, and improve the UI
2019-11-05 14:10:23 +00:00

20 lines
375 B
Ruby

# frozen_string_literal: true
class ApiKeySerializer < ApplicationSerializer
attributes :id,
:key,
:description,
:last_used_at,
:created_at,
:updated_at,
:revoked_at
has_one :user, serializer: BasicUserSerializer, embed: :objects
def include_user_id?
!object.user_id.nil?
end
end