2017-04-19 11:52:37 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FollowerAccountsController < ApplicationController
|
|
|
|
include AccountControllerConcern
|
|
|
|
|
|
|
|
def index
|
2017-05-23 11:12:19 +00:00
|
|
|
@follows = Follow.where(target_account: @account).recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
|
2017-07-15 01:01:39 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
render json: collection_presenter, serializer: ActivityPub::CollectionSerializer, adapter: ActivityPub::Adapter
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def collection_presenter
|
|
|
|
ActivityPub::CollectionPresenter.new(
|
|
|
|
id: account_followers_url(@account),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.followers_count,
|
|
|
|
items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.account) }
|
|
|
|
)
|
2017-04-19 11:52:37 +00:00
|
|
|
end
|
|
|
|
end
|