@singularlogic/coreplatts 0.0.20 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -246,7 +246,7 @@ var GroupConsumer = class extends BaseConsumer {
|
|
|
246
246
|
getGroupUsers(gname, gid, token) {
|
|
247
247
|
let addPath = "";
|
|
248
248
|
addPath = addPath + (gname ? `?name=${gname}` : "") + (gid ? `?id=${gid}` : "");
|
|
249
|
-
return this._httpClient.get(this.path + "
|
|
249
|
+
return this._httpClient.get(this.path + "describe" + addPath, { headers: { "Authorization": "Bearer " + token } }).then((resp) => resp.data).catch((error) => {
|
|
250
250
|
console.error(`\u274C Error in posting:`, error);
|
|
251
251
|
return null;
|
|
252
252
|
});
|