mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
8 lines
221 B
Ruby
8 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
|