diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-02 16:11:19 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-02 16:11:19 +0200 |
commit | 66a868f92cb3d10e054a5d8322f91d99bb6942d4 (patch) | |
tree | 05f6bf556dd6ff498788552e404ece528d12e2be /server/sonar-web/src/main/js/apps/groups | |
parent | fb31400daf90743eeed0095a148f8888caab281c (diff) | |
download | sonarqube-66a868f92cb3d10e054a5d8322f91d99bb6942d4.tar.gz sonarqube-66a868f92cb3d10e054a5d8322f91d99bb6942d4.zip |
SONAR-6602 use "q" for search
Diffstat (limited to 'server/sonar-web/src/main/js/apps/groups')
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/users-view.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/users-view.js b/server/sonar-web/src/main/js/apps/groups/users-view.js index 59f84d74b08..cfe6468ce0e 100644 --- a/server/sonar-web/src/main/js/apps/groups/users-view.js +++ b/server/sonar-web/src/main/js/apps/groups/users-view.js @@ -17,6 +17,7 @@ define([ format: function (item) { return item.name + '<br><span class="note">' + item.login + '</span>'; }, + queryParam: 'q', searchUrl: baseUrl + '/api/usergroups/users?ps=100&id=' + this.model.id, selectUrl: baseUrl + '/api/usergroups/add_user', deselectUrl: baseUrl + '/api/usergroups/remove_user', |