This commit is contained in:
Carsten Otto 2015-03-16 00:03:34 +01:00
parent 5718eac5c3
commit 0edc263c7e
3 changed files with 11 additions and 13 deletions

View file

@ -5,5 +5,13 @@ class Dependency < ActiveRecord::Base
belongs_to :predecessor, :foreign_key => 'predecessor_id', :class_name => 'Todo', :touch => true
belongs_to :successor, :foreign_key => 'successor_id', :class_name => 'Todo', :touch => true
validate :check_circular_dependencies
def check_circular_dependencies
unless predecessor.nil? or successor.nil?
errors.add("Depends on:", "Adding '#{successor.specification}' would create a circular dependency") if successor.is_successor?(predecessor)
end
end
end