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