6 lines
200 B
Ruby
6 lines
200 B
Ruby
class ReservationSerializer < ActiveModel::Serializer
|
|
attributes :id, :company_id, :customer_id, :team_id, :title, :description, :start_time, :end_time
|
|
|
|
belongs_to :team
|
|
belongs_to :customer
|
|
end |