diff options
| author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-10-02 19:01:40 +0300 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-10-02 19:01:40 +0300 |
| commit | d6363e935933551b7f9edb4063d0b0fbcea3c824 (patch) | |
| tree | ecf1b37bdb7eb14bce9c699c1fd1ff0199acc31c /config | |
| parent | d683ce5c10ee84d9fde153329d08425c7e99941f (diff) | |
| download | gitlab-ce-d6363e935933551b7f9edb4063d0b0fbcea3c824.tar.gz | |
Admin Group scaffold -> new, show, index
Diffstat (limited to 'config')
| -rw-r--r-- | config/routes.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 21521a979e5..2b92337994a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -43,6 +43,11 @@ Gitlab::Application.routes.draw do put :unblock end end + resources :groups, constraints: { id: /[^\/]+/ } do + member do + put :project_update + end + end resources :projects, constraints: { id: /[^\/]+/ } do member do get :team |
