mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Add a way to view staff action logs in admin
This commit is contained in:
8
app/controllers/admin/staff_action_logs_controller.rb
Normal file
8
app/controllers/admin/staff_action_logs_controller.rb
Normal file
@@ -0,0 +1,8 @@
|
||||
class Admin::StaffActionLogsController < Admin::AdminController
|
||||
|
||||
def index
|
||||
staff_actions = StaffActionLog.limit(50).order('created_at desc').to_a
|
||||
render_serialized(staff_actions, StaffActionLogSerializer)
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user