Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
17 Zeilen
478 B
Ruby
17 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
|