add pagination to instance groups lookup modal

This commit is contained in:
John Mitchell
2019-02-11 18:10:27 -05:00
parent 8e194baa66
commit 680d153a14
13 changed files with 369 additions and 257 deletions

View File

@@ -106,8 +106,8 @@ class APIClient {
return this.http.post(endpoint, data);
}
getInstanceGroups () {
return this.http.get(API_INSTANCE_GROUPS);
getInstanceGroups (params) {
return this.http.get(API_INSTANCE_GROUPS, { params });
}
createInstanceGroups (url, id) {