Files
old-zsterminator/app/models/reservation.rb
2024-09-08 14:00:15 +02:00

13 lines
352 B
Ruby

class Reservation < ApplicationRecord
belongs_to :company
belongs_to :customer
belongs_to :team
validates :company_id, presence: true
validates :customer_id, presence: true
validates :team_id, presence: true
end
class ReservationSerializer < ActiveModel::Serializer
attributes :id, :company, :customer, :team, :start_time, :end_time
end