mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 17:15:16 +08:00
9 lines
226 B
Ruby
9 lines
226 B
Ruby
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
|