Adding sync of follow relationships to Neo4J, accounts/suggestions API
This commit is contained in:
parent
91144d46ec
commit
e21a3fe0cd
11 changed files with 76 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
class Api::V1::AccountsController < ApiController
|
||||
before_action :doorkeeper_authorize!
|
||||
before_action :set_account, except: :verify_credentials
|
||||
before_action :set_account, except: [:verify_credentials, :suggestions]
|
||||
respond_to :json
|
||||
|
||||
def show
|
||||
|
@ -19,6 +19,10 @@ class Api::V1::AccountsController < ApiController
|
|||
@followers = @account.followers
|
||||
end
|
||||
|
||||
def suggestions
|
||||
@accounts = FollowSuggestion.get(current_user.account_id)
|
||||
end
|
||||
|
||||
def statuses
|
||||
@statuses = @account.statuses.with_includes.with_counters.paginate_by_max_id(20, params[:max_id], params[:since_id]).to_a
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue