mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
267 B
Ruby
14 lines
267 B
Ruby
class Api::Admin::EnterpriseRelationshipSerializer < ActiveModel::Serializer
|
|
attributes :id, :parent_id, :parent_name, :child_id, :child_name
|
|
|
|
has_many :permissions
|
|
|
|
def parent_name
|
|
object.parent.name
|
|
end
|
|
|
|
def child_name
|
|
object.child.name
|
|
end
|
|
end
|