You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
417 B
9 lines
417 B
# 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, |
|
:service_documentation, :app_registration_endpoint |
|
end
|
|
|