mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 11:32:46 +08: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
|