mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 10:08:20 -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
|