10 lines
177 B
Ruby
10 lines
177 B
Ruby
class SerializableUser < JSONAPI::Serializable::Resource
|
|
type "user"
|
|
|
|
attributes :email, :full_name
|
|
|
|
attribute :company_name do
|
|
@object.primary_account.name
|
|
end
|
|
end
|