X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbe165bbb3d6eda37d9579f1ac767599f9055607..56e96d856c7fc168b37cf9d26a58a6da8094cedb:/app/models/tracetag.rb diff --git a/app/models/tracetag.rb b/app/models/tracetag.rb index 355137831..9d2195920 100644 --- a/app/models/tracetag.rb +++ b/app/models/tracetag.rb @@ -3,6 +3,6 @@ class Tracetag < ActiveRecord::Base belongs_to :trace, :foreign_key => "gpx_id" - validates :trace, :presence => true, :associated => true - validates :tag, :length => 1..255, :format => /\A[^\/;.,?]*\z/ + validates :trace, :associated => true + validates :tag, :length => 1..255, :format => %r{\A[^/;.,?]*\z} end