diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-19 12:04:34 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-19 15:29:53 +0200 |
commit | d059c69db76a5a55841bb8b0914211ae0a4bfd4f (patch) | |
tree | 0257a77f6955ae0e6f4c7887a4e9b3a62b57cd0a /config | |
parent | 270b7ce810775d69887e76162a00e8dc97e5d959 (diff) | |
download | gitlab-ce-d059c69db76a5a55841bb8b0914211ae0a4bfd4f.tar.gz |
Move identities list to own controller action
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-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 8428eff1ef5..00a95a23edc 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -149,7 +149,7 @@ Gitlab::Application.routes.draw do namespace :admin do resources :users, constraints: { id: /[a-zA-Z.\/0-9_\-]+/ } do resources :keys, only: [:show, :destroy] - resources :identities, only: [:edit, :update, :destroy] + resources :identities, only: [:index, :edit, :update, :destroy] member do put :team_update |