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