mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-01-24 16:29:51 -05:00
8 lines
226 B
Ruby
8 lines
226 B
Ruby
class Admin::BlockedEmailsController < Admin::AdminController
|
|
|
|
def index
|
|
blocked_emails = BlockedEmail.limit(200).order('last_match_at desc').to_a
|
|
render_serialized(blocked_emails, BlockedEmailSerializer)
|
|
end
|
|
|
|
end
|