]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/trace.rb
add tags to gpx files
[rails.git] / app / models / trace.rb
index a7e19bef860f98ad227f0edddba57ec2316eba55..06e3dc1a12acd20974dba790080a535bffbef2df 100644 (file)
@@ -1,4 +1,14 @@
 class Trace < ActiveRecord::Base
   set_table_name 'gpx_files'
-  has_many :trace_points, :foreign_key => 'gpx_id'
+
+  belongs_to :user
+  has_many :tags, :class_name => 'Tracetag', :foreign_key => 'gpx_id'
+
+  def tagstring=(s)
+    self.tags = s.split().collect {|tag|
+      tt = Tracetag.new
+      tt.tag = tag
+      tt
+    }
+  end
 end