From eb605141ffb95290c5a537802ea418e6e45bf95f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 30 Sep 2017 22:05:42 +0200 Subject: Fix #5104 - GET /api/v1/apps/verify_credentials to confirm app works (#5112) --- app/controllers/api/v1/apps/credentials_controller.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 app/controllers/api/v1/apps/credentials_controller.rb (limited to 'app/controllers/api/v1/apps/credentials_controller.rb') diff --git a/app/controllers/api/v1/apps/credentials_controller.rb b/app/controllers/api/v1/apps/credentials_controller.rb new file mode 100644 index 000000000..e469c7d21 --- /dev/null +++ b/app/controllers/api/v1/apps/credentials_controller.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +class Api::V1::Apps::CredentialsController < Api::BaseController + before_action -> { doorkeeper_authorize! :read } + + respond_to :json + + def show + render json: doorkeeper_token.application, serializer: REST::StatusSerializer::ApplicationSerializer + end +end -- cgit