diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-27 21:35:41 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-27 21:39:34 +0300 |
commit | 643a6e5824cc8ffb6b58288b7822f42d13476c8f (patch) | |
tree | 48d417e74e51d2d22b25e6c80e729412ea9c92ae /config | |
parent | 24e26d8b7a4a2487600f273f7b1a6236691d2664 (diff) | |
download | gitlab-ce-643a6e5824cc8ffb6b58288b7822f42d13476c8f.tar.gz |
Improve admin user show page
Show permissions for all project.
Add ability to remove user from group if not an owner
Remove unnecessary admin controller
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config/routes.rb b/config/routes.rb index 5cf47f9ac5e..d0e29a5ab96 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -89,11 +89,7 @@ Gitlab::Application.routes.draw do resource :logs, only: [:show] resource :background_jobs, controller: 'background_jobs', only: [:show] - - resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] do - resources :members, only: [:destroy] - end - + resources :projects, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ }, only: [:index, :show] root to: "dashboard#index" end |