about summary refs log tree commit diff
path: root/app/controllers/api/v1/apps/credentials_controller.rb
blob: 0475b2d4a208d4d0e80991f861b49388423536f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Api::V1::Apps::CredentialsController < Api::BaseController
  before_action -> { doorkeeper_authorize! :read }

  def show
    render json: doorkeeper_token.application, serializer: REST::ApplicationSerializer, fields: %i(name website vapid_key)
  end
end