0
0
Fork 0

Add Instance class to list admin records (#3443)

This commit is contained in:
Matt Jankowski 2017-05-31 14:38:44 -04:00 committed by Eugen Rochko
parent b25e42a77f
commit a132332b86
3 changed files with 21 additions and 4 deletions

View file

@ -3,13 +3,18 @@
module Admin
class InstancesController < BaseController
def index
@instances = ordered_instances.page(params[:page])
@instances = ordered_instances
end
private
def paginated_instances
Account.remote.by_domain_accounts.page(params[:page])
end
helper_method :paginated_instances
def ordered_instances
Account.remote.by_domain_accounts
paginated_instances.map { |account| Instance.new(account) }
end
end
end