0
0
Fork 0

Add API for getting info about authenticated user: /api/v1/accounts/verify_credentials

This commit is contained in:
Eugen Rochko 2016-10-02 16:14:21 +02:00
parent 31a0202546
commit 6d7290f47c
3 changed files with 17 additions and 4 deletions

View file

@ -1,11 +1,16 @@
class Api::V1::AccountsController < ApiController
before_action :doorkeeper_authorize!
before_action :set_account
before_action :set_account, except: :verify_credentials
respond_to :json
def show
end
def verify_credentials
@account = current_user.account
render action: :show
end
def following
@following = @account.following
end