Close a number of holes in the API by making it validate changes

more carefully.
This commit is contained in:
Tom Hughes 2007-06-19 23:20:39 +00:00
parent 7f2756fe20
commit c11d961f62
9 changed files with 250 additions and 194 deletions

View file

@ -1,6 +1,10 @@
class OldSegment < ActiveRecord::Base
set_table_name 'segments'
validates_presence_of :user_id, :timestamp
validates_inclusion_of :visible, :in => [ true, false ]
validates_numericality_of :node_a, :node_b
belongs_to :user
def self.from_segment(segment)