validates_inclusion_of :visible, :in => [ true, false ]
validates_numericality_of :latitude, :longitude
validate :validate_position
+ validates_associated :changeset
belongs_to :changeset
end
def tags_as_hash
- hash = {}
- Tags.split(self.tags) do |k,v|
- hash[k] = v
- end
- hash
+ return self.tags
end
# Pretend we're not in any ways