mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 21:21:11 +01:00
12 lines
294 B
Ruby
12 lines
294 B
Ruby
|
# 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
|