mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 23:03:38 +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
|