diff options
author | Andrey Kumanyaev <me@zzet.org> | 2013-01-25 21:20:15 +0400 |
---|---|---|
committer | Andrey Kumanyaev <me@zzet.org> | 2013-01-25 21:20:15 +0400 |
commit | 6efda51cc5caad07b6a01d293daf913eec01901f (patch) | |
tree | 49affd28c1320345630bd4303956968f8f27e197 /config/routes.rb | |
parent | 5ee8c132a540973c6726bfb99b2050dccc390449 (diff) | |
download | gitlab-ce-6efda51cc5caad07b6a01d293daf913eec01901f.tar.gz |
fix edit project members access link and page fixes refs #2745
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index d67f0a47a00..4a66e9f11bf 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -84,7 +84,7 @@ Gitlab::Application.routes.draw do get :team put :team_update end - scope module: :projects, constraints: { id: /[^\/]+/ } do + scope module: :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do resources :members, only: [:edit, :update, :destroy] end end |