diff options
author | Jeremy Mack <jmacktdkc@gmail.com> | 2011-12-12 13:13:11 -0500 |
---|---|---|
committer | Jeremy Mack <jmacktdkc@gmail.com> | 2011-12-12 13:13:11 -0500 |
commit | 926f3013c25645543fb1c91f7346585fdcb7a3a6 (patch) | |
tree | ccba97e138e50da72f93fc9ea051e1eb4b33fbdb /config | |
parent | 822c0a506043a2e5ba0a58769b398cfe91d3df47 (diff) | |
download | gitlab-ce-926f3013c25645543fb1c91f7346585fdcb7a3a6.tar.gz |
Updated validations and routes to support dots in project names
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/routes.rb b/config/routes.rb index 27d0612de03..1fbbbfd536a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -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" |