discourse/app/controllers/admin/screened_urls_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
442 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Admin::ScreenedUrlsController < Admin::StaffController
2013-08-15 10:48:30 -04:00
def index
screened_urls =
ScreenedUrl
.select(
"domain, sum(match_count) as match_count, max(last_match_at) as last_match_at, min(created_at) as created_at",
)
.group(:domain)
.order("last_match_at DESC")
.to_a
render_serialized(screened_urls, GroupedScreenedUrlSerializer)
2013-08-15 10:48:30 -04:00
end
end