This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::AppsController < Api::BaseController
|
2016-09-26 14:55:21 -07:00
|
|
|
def create
|
2017-05-30 18:16:28 -07:00
|
|
|
@app = Doorkeeper::Application.create!(application_options)
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @app, serializer: REST::ApplicationSerializer
|
2017-04-03 16:33:34 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-30 18:16:28 -07:00
|
|
|
def application_options
|
|
|
|
{
|
|
|
|
name: app_params[:client_name],
|
|
|
|
redirect_uri: app_params[:redirect_uris],
|
|
|
|
scopes: app_scopes_or_default,
|
|
|
|
website: app_params[:website],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def app_scopes_or_default
|
|
|
|
app_params[:scopes] || Doorkeeper.configuration.default_scopes
|
|
|
|
end
|
|
|
|
|
2017-04-03 16:33:34 -07:00
|
|
|
def app_params
|
|
|
|
params.permit(:client_name, :redirect_uris, :scopes, :website)
|
2016-09-26 14:55:21 -07:00
|
|
|
end
|
|
|
|
end
|