Fix breaking change in admin account API (#19176)

* Fix breaking change in admin account API

Ensure that `ip` is a String value and not returning a raw database entry

* please rubocop
This commit is contained in:
trwnh
2022-09-15 08:35:06 -05:00
committed by GitHub
parent 0aacf00f5b
commit 526b4b3677

View File

@ -77,6 +77,6 @@ class REST::Admin::AccountSerializer < ActiveModel::Serializer
end
def ip
ips&.first
ips&.first&.ip
end
end