2017-11-24 01:05:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ActionLogsController < BaseController
|
2020-04-03 11:06:34 +00:00
|
|
|
before_action :set_action_logs
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
def index
|
|
|
|
authorize :audit_log, :index?
|
|
|
|
@auditable_accounts = Account.where(id: Admin::ActionLog.reorder(nil).select('distinct account_id')).select(:id, :username)
|
|
|
|
end
|
2020-04-03 11:06:34 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_action_logs
|
|
|
|
@action_logs = Admin::ActionLogFilter.new(filter_params).results.page(params[:page])
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
|
|
|
params.slice(:page, *Admin::ActionLogFilter::KEYS).permit(:page, *Admin::ActionLogFilter::KEYS)
|
2017-11-24 01:05:53 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|