You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
266 B

  1. # frozen_string_literal: true
  2. module Admin
  3. class InstancesController < BaseController
  4. def index
  5. @instances = ordered_instances.page(params[:page])
  6. end
  7. private
  8. def ordered_instances
  9. Account.remote.by_domain_accounts
  10. end
  11. end
  12. end