1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-24 03:23:48 -05:00

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