diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-18 17:56:15 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-19 15:29:52 +0200 |
commit | 228da2dd28a91b3ab2729787e93e72940975a2bd (patch) | |
tree | df1741c721712cf758034e5a579fd5a91f91d8b0 /config | |
parent | 74a6732c0dfc1416cad382203544d9c4d6246f58 (diff) | |
download | gitlab-ce-228da2dd28a91b3ab2729787e93e72940975a2bd.tar.gz |
Admin can see and remove user identities
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index d60bc796fdb..e9ff607aafe 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -149,6 +149,8 @@ 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: [:destroy] + member do put :team_update put :block |