diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-10-06 11:06:09 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2015-10-06 11:18:46 +0200 |
commit | 52014e69037e0e94b08ab49ed65f8c6a2c1e65d6 (patch) | |
tree | bf8db099dacdeff644cf6c8b9f27b6239fb8e0b6 /server/sonar-web/src/main/js/apps/users/groups-view.js | |
parent | d20713782db677b348fd0a4bf99a939191c6c481 (diff) | |
download | sonarqube-52014e69037e0e94b08ab49ed65f8c6a2c1e65d6.tar.gz sonarqube-52014e69037e0e94b08ab49ed65f8c6a2c1e65d6.zip |
SONAR-6854 use api/user_groups
Diffstat (limited to 'server/sonar-web/src/main/js/apps/users/groups-view.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/users/groups-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/users/groups-view.js b/server/sonar-web/src/main/js/apps/users/groups-view.js index f402b931cb8..6e4a9048854 100644 --- a/server/sonar-web/src/main/js/apps/users/groups-view.js +++ b/server/sonar-web/src/main/js/apps/users/groups-view.js @@ -18,8 +18,8 @@ export default Modal.extend({ }, queryParam: 'q', searchUrl: baseUrl + '/api/users/groups?ps=100&login=' + this.model.id, - selectUrl: baseUrl + '/api/usergroups/add_user', - deselectUrl: baseUrl + '/api/usergroups/remove_user', + selectUrl: baseUrl + '/api/user_groups/add_user', + deselectUrl: baseUrl + '/api/user_groups/remove_user', extra: { login: this.model.id }, |