Add API for getting info about authenticated user: /api/v1/accounts/verify_credentials
This commit is contained in:
parent
31a0202546
commit
6d7290f47c
3 changed files with 17 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue