Updated validations and routes to support dots in project names
This commit is contained in:
parent
8ee6d21fa1
commit
2e2e352107
2 changed files with 5 additions and 5 deletions
|
@ -25,7 +25,7 @@ class Project < ActiveRecord::Base
|
|||
validates :path,
|
||||
:uniqueness => true,
|
||||
:presence => true,
|
||||
:format => { :with => /^[a-zA-Z0-9_\-]*$/,
|
||||
:format => { :with => /^[a-zA-Z0-9_\-\.]*$/,
|
||||
:message => "only letters, digits & '_' '-' allowed" },
|
||||
:length => { :within => 0..255 }
|
||||
|
||||
|
@ -35,7 +35,7 @@ class Project < ActiveRecord::Base
|
|||
validates :code,
|
||||
:presence => true,
|
||||
:uniqueness => true,
|
||||
:format => { :with => /^[a-zA-Z0-9_\-]*$/,
|
||||
:format => { :with => /^[a-zA-Z0-9_\-\.]*$/,
|
||||
:message => "only letters, digits & '_' '-' allowed" },
|
||||
:length => { :within => 3..255 }
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ Gitlab::Application.routes.draw do
|
|||
|
||||
namespace :admin do
|
||||
resources :users
|
||||
resources :projects
|
||||
resources :projects, :constraints => { :id => /[^\/]+/ }
|
||||
resources :team_members
|
||||
get 'emails', :to => 'mailer#preview'
|
||||
get 'mailer/preview_note'
|
||||
|
@ -28,12 +28,12 @@ Gitlab::Application.routes.draw do
|
|||
|
||||
#get "profile/:id", :to => "profile#show"
|
||||
|
||||
resources :projects, :only => [:new, :create, :index]
|
||||
resources :projects, :constraints => { :id => /[^\/]+/ }, :only => [:new, :create, :index]
|
||||
resources :keys
|
||||
|
||||
devise_for :users
|
||||
|
||||
resources :projects, :except => [:new, :create, :index], :path => "/" do
|
||||
resources :projects, :constraints => { :id => /[^\/]+/ }, :except => [:new, :create, :index], :path => "/" do
|
||||
member do
|
||||
get "team"
|
||||
get "wall"
|
||||
|
|
Loading…
Reference in a new issue