action_logs_controller.rb 180 B

123456789
  1. # frozen_string_literal: true
  2. module Admin
  3. class ActionLogsController < BaseController
  4. def index
  5. @action_logs = Admin::ActionLog.page(params[:page])
  6. end
  7. end
  8. end