mirror of
https://github.com/discourse/discourse.git
synced 2025-02-15 07:45:02 +00:00
9 lines
200 B
Ruby
9 lines
200 B
Ruby
class Admin::SearchLogsController < Admin::AdminController
|
|
|
|
def index
|
|
period = params[:period] || "all"
|
|
render_serialized(SearchLog.trending(period.to_sym), SearchLogsSerializer)
|
|
end
|
|
|
|
end
|