Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/app/controllers/following_accounts_controller.rb
2017-04-29 10:50:10 +02:00

9 lines
223 B
Ruby

# frozen_string_literal: true
class FollowingAccountsController < ApplicationController
include AccountControllerConcern
def index
@accounts = @account.following.page(params[:page]).per(FOLLOW_PER_PAGE)
end
end