1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 14:03:46 -05:00

11 lines
485 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class OauthMetadataSerializer < ActiveModel::Serializer
attributes :issuer, :authorization_endpoint, :token_endpoint,
2024-10-30 15:38:10 +01:00
:revocation_endpoint, :userinfo_endpoint, :scopes_supported,
:response_types_supported, :response_modes_supported,
:grant_types_supported, :token_endpoint_auth_methods_supported,
2024-07-26 10:53:10 +02:00
:code_challenge_methods_supported,
:service_documentation, :app_registration_endpoint
end