2024-05-06 13:17:56 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class OauthMetadataSerializer < ActiveModel::Serializer
|
|
|
|
attributes :issuer, :authorization_endpoint, :token_endpoint,
|
|
|
|
:revocation_endpoint, :scopes_supported,
|
|
|
|
:response_types_supported, :response_modes_supported,
|
|
|
|
:grant_types_supported, :token_endpoint_auth_methods_supported,
|
2024-07-26 08:53:10 +00:00
|
|
|
:code_challenge_methods_supported,
|
2024-05-06 13:17:56 +00:00
|
|
|
:service_documentation, :app_registration_endpoint
|
|
|
|
end
|