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-04-29 10:50:10 +02:00
|
|
|
@accounts = @account.followers.page(params[:page]).per(FOLLOW_PER_PAGE)
|
2017-04-19 13:52:37 +02:00
|
|
|
end
|
|
|
|
end
|