@ -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
def following
@following = @account.following
@ -63,6 +63,7 @@ Rails.application.routes.draw do
resources :accounts, only: [:show] do
collection do
get :relationships
get :verify_credentials
member do
@ -18,6 +18,13 @@ RSpec.describe Api::V1::AccountsController, type: :controller do
describe 'GET #verify_credentials' do
it 'returns http success' do
expect(response).to have_http_status(:success)
describe 'GET #statuses' do
get :statuses, params: { id: user.account.id }