]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/changeset.rb
Fixed problems with the relations functional tests.
[rails.git] / app / models / changeset.rb
index 7e2216f0e501165c6e2f1b2b870f52eb70e6b991..caa167c9eb19e52b32e277269820b056f918e962 100644 (file)
@@ -13,6 +13,7 @@ class Changeset < ActiveRecord::Base
   has_many :old_relations
   
   validates_presence_of :user_id, :created_at, :open
+  validates_inclusion_of :open, :in => [ true, false ]
   
   # Use a method like this, so that we can easily change how we
   # determine whether a changeset is open, without breaking code in at 
@@ -70,6 +71,7 @@ class Changeset < ActiveRecord::Base
 
     Changeset.transaction do
       # fixme update modified_at time?
+      # FIXME there is no modified_at time, should it be added
       self.save!
     end