mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
9 lines
221 B
Ruby
9 lines
221 B
Ruby
class Admin::ScreenedUrlsController < Admin::AdminController
|
|
|
|
def index
|
|
screened_urls = ScreenedUrl.limit(200).order('last_match_at desc').to_a
|
|
render_serialized(screened_urls, ScreenedUrlSerializer)
|
|
end
|
|
|
|
end
|