31 lines
651 B
Ruby
31 lines
651 B
Ruby
# frozen_string_literal: true
|
|
|
|
module OauthApplications
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :prepare_scopes, only: [:create, :update]
|
|
end
|
|
|
|
def prepare_scopes
|
|
scopes = params.fetch(:doorkeeper_application, {}).fetch(:scopes, nil)
|
|
|
|
if scopes
|
|
params[:doorkeeper_application][:scopes] = scopes.join(' ')
|
|
end
|
|
end
|
|
|
|
def load_scopes
|
|
@scopes ||= Doorkeeper.configuration.scopes
|
|
end
|
|
|
|
def permitted_params
|
|
%i{name redirect_uri scopes confidential expire_access_tokens}
|
|
end
|
|
|
|
def application_params
|
|
params
|
|
.require(:doorkeeper_application)
|
|
.permit(*permitted_params)
|
|
end
|
|
end
|