Parcourir la source

Don't double-validate link

master
Adrian Short il y a 12 ans
Parent
révision
d7b5e01804
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      app/models/feed.rb

+ 1
- 1
app/models/feed.rb Voir le fichier

@@ -6,6 +6,6 @@ class Feed
key :last_fetched, Time, :default => nil
timestamps!

validates :title, :link, :presence => true
validates :title, :presence => true
validates_format_of :link, :with => URI::regexp(%w(http https)), :message => "must be a valid URL"
end

Chargement…
Annuler
Enregistrer