You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
270 B
15 lines
270 B
2 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::Admin::IpBlockSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :ip, :severity, :comment,
|
||
|
:created_at, :expires_at
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
|
||
|
def ip
|
||
|
"#{object.ip}/#{object.ip.prefix}"
|
||
|
end
|
||
|
end
|