Files
old-zsterminator/app/serializers/reservatiopn_serializer.rb

6 lines
163 B
Ruby
Raw Normal View History

2024-08-24 07:06:09 +02:00
class ReservationSerializer < ActiveModel::Serializer
2025-02-17 19:12:40 +01:00
attributes :id, :title, :description, :start_time, :end_time
2024-08-24 07:06:09 +02:00
belongs_to :customer
2025-02-17 19:12:40 +01:00
belongs_to :team
end