mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:39:36 -06: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
|