mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
20 lines
425 B
Ruby
20 lines
425 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class ActionLogsController < BaseController
|
|
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)
|
|
end
|
|
end
|
|
end
|