replace ^ and $ anchors in regexp with \A and \z respectively
http://guides.rubyonrails.org/security.html#regular-expressions
This commit is contained in:
parent
c7a1779b22
commit
2088d2eba8
1 changed files with 2 additions and 2 deletions
|
@ -75,10 +75,10 @@ class Project < ActiveRecord::Base
|
|||
validates :description, length: { within: 0..2000 }
|
||||
validates :name, uniqueness: true, presence: true, length: { within: 0..255 }
|
||||
validates :path, uniqueness: true, presence: true, length: { within: 0..255 },
|
||||
format: { with: /^[a-zA-Z][a-zA-Z0-9_\-\.]*$/,
|
||||
format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
|
||||
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
||||
validates :code, presence: true, uniqueness: true, length: { within: 1..255 },
|
||||
format: { with: /^[a-zA-Z][a-zA-Z0-9_\-\.]*$/,
|
||||
format: { with: /\A[a-zA-Z][a-zA-Z0-9_\-\.]*\z/,
|
||||
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
||||
validates :issues_enabled, :wall_enabled, :merge_requests_enabled,
|
||||
:wiki_enabled, inclusion: { in: [true, false] }
|
||||
|
|
Loading…
Reference in a new issue