mirror of
https://github.com/discourse/discourse.git
synced 2025-06-03 19:39:30 +08:00
Add screening by IP address. When deleting a user as a spammer, block all signups from the same IP address.
This commit is contained in:
12
app/serializers/screened_ip_address_serializer.rb
Normal file
12
app/serializers/screened_ip_address_serializer.rb
Normal file
@ -0,0 +1,12 @@
|
||||
class ScreenedIpAddressSerializer < ApplicationSerializer
|
||||
attributes :ip_address,
|
||||
:action,
|
||||
:match_count,
|
||||
:last_match_at,
|
||||
:created_at
|
||||
|
||||
def action
|
||||
ScreenedIpAddress.actions.key(object.action_type).to_s
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user