mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05: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
|