mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
249 B
Ruby
12 lines
249 B
Ruby
class Api::Admin::EnterpriseRoleSerializer < ActiveModel::Serializer
|
|
attributes :id, :user_id, :enterprise_id, :user_email, :enterprise_name
|
|
|
|
def user_email
|
|
object.user.email
|
|
end
|
|
|
|
def enterprise_name
|
|
object.enterprise.name
|
|
end
|
|
end
|