logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

action_logs_controller.rb (180B)


  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