about summary refs log tree commit diff
path: root/app/controllers/api/v1/apps/credentials_controller.rb
blob: 8219d95f39e40e843710da11020f8d6efd7163a4 (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), monsterfork_api: monsterfork_api
  end
end