0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-05-20 07:50:05 +02:00
discourse-custom-wizard/app/serializers/custom_wizard/api/authorization_serializer.rb
2022-03-12 14:00:07 +01:00

18 Zeilen
478 B
Ruby

# frozen_string_literal: true
class CustomWizard::Api::AuthorizationSerializer < ::ApplicationSerializer
attributes :auth_type,
:auth_url,
:token_url,
:client_id,
:client_secret,
:authorized,
:auth_params,
:access_token,
:refresh_token,
:token_expires_at,
:token_refresh_at,
:code,
:username,
:password
end