This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/following_accounts_controller.rb
2017-04-29 10:50:10 +02:00

10 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