1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/models/slots_reservation.rb

17 lines
422 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# SlotsReservation is the relation table between a Slot and a Reservation.
2020-03-25 10:16:47 +01:00
class SlotsReservation < ApplicationRecord
belongs_to :slot
belongs_to :reservation
after_destroy :cleanup_slots
# when the SlotsReservation is deleted (from Reservation destroy cascade), we delete the
# corresponding slot
def cleanup_slots
return unless slot.destroying
slot.destroy
end
end