mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 05:29:17 -06:00
9 lines
331 B
Ruby
9 lines
331 B
Ruby
class Admin::StaffActionLogsController < Admin::AdminController
|
|
|
|
def index
|
|
staff_action_logs = StaffActionLog.with_filters(params.slice(:action_name, :staff_user, :target_user)).limit(200).order('id DESC').includes(:staff_user, :target_user).to_a
|
|
render_serialized(staff_action_logs, StaffActionLogSerializer)
|
|
end
|
|
|
|
end
|