16 lines
		
	
	
		
			255 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			255 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
# Copyright (C) 2024 Manuel Bustillo
 | 
						|
 | 
						|
class SerializableGroup < JSONAPI::Serializable::Resource
 | 
						|
  type 'group'
 | 
						|
 | 
						|
  attributes :name, :icon
 | 
						|
 | 
						|
  has_many :children
 | 
						|
 | 
						|
  attribute :guest_count do
 | 
						|
    @object.guests.count
 | 
						|
  end
 | 
						|
end
 |