mirror of
https://github.com/discourse/discourse.git
synced 2025-01-16 05:42:41 +08:00
590b3e11fb
Re-opening of #30096. It was reverted because it was missing a sidebar link to Webhooks in the admin panel.
9 lines
314 B
Ruby
9 lines
314 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BasicApiKeySerializer < ApplicationSerializer
|
|
attributes :id, :truncated_key, :description, :created_at, :last_used_at, :revoked_at
|
|
|
|
has_one :user, serializer: BasicUserSerializer, embed: :objects
|
|
has_one :created_by, serializer: BasicUserSerializer, embed: :objects
|
|
end
|