浏览代码

Don't double-validate link

master
Adrian Short 12 年前
父节点
当前提交
d7b5e01804
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      app/models/feed.rb

+ 1
- 1
app/models/feed.rb 查看文件

@@ -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

正在加载...
取消
保存