Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Mack <jmacktdkc@gmail.com>2011-12-12 22:13:11 +0400
committerJeremy Mack <jmacktdkc@gmail.com>2011-12-12 22:13:11 +0400
commit926f3013c25645543fb1c91f7346585fdcb7a3a6 (patch)
treeccba97e138e50da72f93fc9ea051e1eb4b33fbdb /config/routes.rb
parent822c0a506043a2e5ba0a58769b398cfe91d3df47 (diff)
Updated validations and routes to support dots in project names
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb6
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"