Manuel Bustillo
cca869a0c4
Some checks failed
Run unit tests / unit_tests (pull_request) Failing after 1m8s
14 lines
248 B
Ruby
14 lines
248 B
Ruby
class SerializableGuest < JSONAPI::Serializable::Resource
|
|
type 'guest'
|
|
|
|
attributes :id, :email, :group_id
|
|
|
|
attribute :name do
|
|
"#{@object.first_name} #{@object.last_name}"
|
|
end
|
|
|
|
attribute :group_name do
|
|
@object.group.name
|
|
end
|
|
end
|