diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/api/v1/accounts_controller.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb index 50e6df80e..d43306f7b 100644 --- a/app/controllers/api/v1/accounts_controller.rb +++ b/app/controllers/api/v1/accounts_controller.rb @@ -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 |