0
0
Fork 0

Add vapid_key to the application entity in the REST API (#10058)

Fix #8785
This commit is contained in:
Eugen Rochko 2019-02-16 05:27:05 +01:00 committed by GitHub
parent a006d4afbe
commit cc84a407f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -6,6 +6,6 @@ class Api::V1::Apps::CredentialsController < Api::BaseController
respond_to :json
def show
render json: doorkeeper_token.application, serializer: REST::StatusSerializer::ApplicationSerializer
render json: doorkeeper_token.application, serializer: REST::ApplicationSerializer, fields: %i(name website vapid_key)
end
end