Files
old-zsterminator/app/serializers/reservatiopn_serializer.rb
2025-02-17 19:12:40 +01:00

6 lines
163 B
Ruby

class ReservationSerializer < ActiveModel::Serializer
attributes :id, :title, :description, :start_time, :end_time
belongs_to :customer
belongs_to :team
end