This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-09-30 22:05:42 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Apps::CredentialsController < Api::BaseController
|
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
2019-02-16 05:27:05 +01:00
|
|
|
render json: doorkeeper_token.application, serializer: REST::ApplicationSerializer, fields: %i(name website vapid_key)
|
2017-09-30 22:05:42 +02:00
|
|
|
end
|
|
|
|
end
|