1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-03 21:42:44 +00:00
mastodon/app/serializers/rest/admin/ip_block_serializer.rb
2022-08-27 20:56:47 +02:00

15 lines
270 B
Ruby

# 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