about summary refs log tree commit diff
path: root/app/controllers/api/v1/apps/credentials_controller.rb
blob: 8b63d0490d173af483469c21eb0391d984b42913 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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::ApplicationSerializer, fields: %i(name website vapid_key)
  end
end