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 FollowerAccountsController < ApplicationController
|
|
|
|
include AccountControllerConcern
|
|
|
|
|
|
|
|
def index
|
2017-05-06 04:03:07 +02:00
|
|
|
@follows = Follow.where(target_account: @account).order(id: :desc).page(params[:page]).per(FOLLOW_PER_PAGE).preload(:account)
|
2017-04-19 13:52:37 +02:00
|
|
|
end
|
|
|
|
end
|