logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 62b057b085ea7ff20765731d64a79e38f19174d4
parent: ef2b50c9acf8bdc2119bfe3d8fe127d92f32c0a7
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Fri, 30 Sep 2016 00:03:08 +0200

Adjust client registration API

Diffstat:

Mapp/controllers/api/v1/apps_controller.rb8+-------
1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/app/controllers/api/v1/apps_controller.rb b/app/controllers/api/v1/apps_controller.rb @@ -2,12 +2,6 @@ class Api::V1::AppsController < ApiController respond_to :json def create - @app = Doorkeeper::Application.create!(app_params) - end - - private - - def app_params - params.permit(:name, :redirect_uri) + @app = Doorkeeper::Application.create!(name: params[:client_name], redirect_uri: params[:redirect_uris]) end end