Remove obsolete callback on RepositoryChecklistItemsValue [SCI-10551]

This commit is contained in:
Martin Artnik 2024-03-28 13:45:42 +01:00
parent 15d903122f
commit 720232a8db

View file

@ -5,10 +5,4 @@ class RepositoryChecklistItemsValue < ApplicationRecord
belongs_to :repository_checklist_value, inverse_of: :repository_checklist_items_values
validates :repository_checklist_item, :repository_checklist_value, presence: true
after_destroy :destroy_empty_value
def destroy_empty_value
repository_checklist_value.destroy! if repository_checklist_value.repository_checklist_items_values.blank?
end
end