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.
2017-11-23 17:05:53 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class ActionLogsController < BaseController
|
2020-04-03 04:06:34 -07:00
|
|
|
before_action :set_action_logs
|
|
|
|
|
|
|
|
def index; end
|
|
|
|
|
|
|
|
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-23 17:05:53 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|