1 2 3 4 5 6 7 8 9 10 11 12 13 14
# 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