allow a dot in the page name

This commit is contained in:
Andrew Coleman 2009-04-01 23:29:24 -05:00
commit 809351f08a

View file

@ -1,5 +1,5 @@
class Page < ActiveRecord::Base
validates_format_of :name, :with => /^[\w ]+$/
validates_format_of :name, :with => /^[\w\. ]+$/
validates_uniqueness_of :name
has_many :comments, :order => 'created_at ASC', :dependent => :destroy