about summary refs log tree commit diff
path: root/app/controllers/following_accounts_controller.rb
blob: 0a80626809fc692c891d7e2452beb524ef756650 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class FollowingAccountsController < ApplicationController
  include AccountControllerConcern

  def index
    @accounts = @account.following.page(params[:page]).per(FOLLOW_PER_PAGE)
  end
end