1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-28 14:58:38 +09:00
YuruToot/app/controllers/admin/instances_controller.rb
2017-05-31 20:38:44 +02:00

21 lines
408 B
Ruby

# frozen_string_literal: true
module Admin
class InstancesController < BaseController
def index
@instances = ordered_instances
end
private
def paginated_instances
Account.remote.by_domain_accounts.page(params[:page])
end
helper_method :paginated_instances
def ordered_instances
paginated_instances.map { |account| Instance.new(account) }
end
end
end