mirror of
https://github.com/discourse/discourse.git
synced 2025-03-05 05:04:26 +08:00
9 lines
225 B
Ruby
9 lines
225 B
Ruby
class Admin::BlockedEmailsController < Admin::AdminController
|
|
|
|
def index
|
|
blocked_emails = BlockedEmail.limit(50).order('last_match_at desc').to_a
|
|
render_serialized(blocked_emails, BlockedEmailSerializer)
|
|
end
|
|
|
|
end
|