X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dbe165bbb3d6eda37d9579f1ac767599f9055607..e7883152e4ace49d93b801f74d4bc250fa4f4e6d:/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