2017-11-24 02:05:53 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ActionLogsController < BaseController
|
2020-04-03 13:06:34 +02:00
|
|
|
before_action :set_action_logs
|
|
|
|
|
2022-07-05 02:41:40 +02:00
|
|
|
def index
|
|
|
|
authorize :audit_log, :index?
|
2024-01-19 02:39:30 +01:00
|
|
|
@auditable_accounts = Account.auditable.select(:id, :username)
|
2022-07-05 02:41:40 +02:00
|
|
|
end
|
2020-04-03 13:06:34 +02: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 02:05:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|