mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2025-01-11 22:46:55 +01:00
9 lines
223 B
Ruby
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
|