mirror of
https://github.com/discourse/discourse.git
synced 2025-05-05 01:04:37 +08:00
9 lines
244 B
Ruby
9 lines
244 B
Ruby
class Admin::ScreenedIpAddressesController < Admin::AdminController
|
|
|
|
def index
|
|
screened_emails = ScreenedIpAddress.limit(200).order('last_match_at desc').to_a
|
|
render_serialized(screened_emails, ScreenedIpAddressSerializer)
|
|
end
|
|
|
|
end
|