This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-01-23 11:33:20 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class RelationshipsController < BaseController
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
PER_PAGE = 40
|
|
|
|
|
|
|
|
def index
|
|
|
|
authorize :account, :index?
|
|
|
|
|
|
|
|
@accounts = RelationshipFilter.new(@account, filter_params).results.page(params[:page]).per(PER_PAGE)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:account_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
2020-01-23 15:20:23 -08:00
|
|
|
params.slice(*RelationshipFilter::KEYS).permit(*RelationshipFilter::KEYS)
|
2020-01-23 11:33:20 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|