about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-30 22:05:42 +0200
committerGitHub <noreply@github.com>2017-09-30 22:05:42 +0200
commiteb605141ffb95290c5a537802ea418e6e45bf95f (patch)
treec09b15c974ad54ab03acfc650f83e8e73d8b139f /app
parent1e1d7887577ce5e2b1ceb0c1d08578ca173d5f5f (diff)
Fix #5104 - GET /api/v1/apps/verify_credentials to confirm app works (#5112)
Diffstat (limited to 'app')
-rw-r--r--app/controllers/api/v1/apps/credentials_controller.rb11
-rw-r--r--app/controllers/api/v1/apps_controller.rb2
2 files changed, 11 insertions, 2 deletions
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
diff --git a/app/controllers/api/v1/apps_controller.rb b/app/controllers/api/v1/apps_controller.rb
index 44a27b20a..e9f7a7291 100644
--- a/app/controllers/api/v1/apps_controller.rb
+++ b/app/controllers/api/v1/apps_controller.rb
@@ -1,8 +1,6 @@
 # frozen_string_literal: true
 
 class Api::V1::AppsController < Api::BaseController
-  respond_to :json
-
   def create
     @app = Doorkeeper::Application.create!(application_options)
     render json: @app, serializer: REST::ApplicationSerializer