mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-01 03:17:53 -05: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
|