diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-19 11:46:49 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-06-19 15:29:53 +0200 |
commit | 270b7ce810775d69887e76162a00e8dc97e5d959 (patch) | |
tree | 33855438dcd29daf1a3ee74735f1dbb411a999c6 /config | |
parent | 228da2dd28a91b3ab2729787e93e72940975a2bd (diff) | |
download | gitlab-ce-270b7ce810775d69887e76162a00e8dc97e5d959.tar.gz |
Add ability for admin to edit user identity
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 e9ff607aafe..8428eff1ef5 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: [:destroy] + resources :identities, only: [:edit, :update, :destroy] member do put :team_update |