This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-19 13:52:37 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class FollowingAccountsController < ApplicationController
|
|
|
|
include AccountControllerConcern
|
|
|
|
|
|
|
|
def index
|
2017-05-23 13:12:19 +02:00
|
|
|
@follows = Follow.where(account: @account).recent.page(params[:page]).per(FOLLOW_PER_PAGE).preload(:target_account)
|
2017-07-15 03:01:39 +02: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_following_index_url(@account),
|
|
|
|
type: :ordered,
|
|
|
|
size: @account.following_count,
|
|
|
|
items: @follows.map { |f| ActivityPub::TagManager.instance.uri_for(f.target_account) }
|
|
|
|
)
|
2017-04-19 13:52:37 +02:00
|
|
|
end
|
|
|
|
end
|