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

17 lines
559 B
Ruby
Raw Normal View History

2016-03-23 18:39:41 +01:00
class MachinesAvailability < ActiveRecord::Base
belongs_to :machine
belongs_to :availability
after_destroy :cleanup_availability
# when the MachinesAvailability is deleted (from Machine destroy cascade), we delete the corresponding
# availability if the deleted machine was the last is this availability slot and teh availability is not
# currently being destroyed.
def cleanup_availability
unless availability.destroying
if availability.machines_availabilities.size == 0
availability.safe_destroy
end
end
end
end