18 lines
348 B
Ruby
18 lines
348 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::GroupRelationshipSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :member, :admin
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
|
||
|
def member
|
||
|
instance_options[:relationships].member[object.id] ? true : false
|
||
|
end
|
||
|
|
||
|
def admin
|
||
|
instance_options[:relationships].admin[object.id] ? true : false
|
||
|
end
|
||
|
end
|