tnx-shared 5.1.238 → 5.1.239
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/bundles/tnx-shared.umd.js +4 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/esm2015/services/user-group-real.service.js +5 -1
- package/fesm2015/tnx-shared.js +4 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/services/user-group-real.service.d.ts +2 -0
- package/services/user-group-real.service.d.ts.map +1 -1
- package/tnx-shared.metadata.json +1 -1
|
@@ -18178,6 +18178,10 @@
|
|
|
18178
18178
|
_this._moduleConfig = _moduleConfigService.getConfig();
|
|
18179
18179
|
return _this;
|
|
18180
18180
|
}
|
|
18181
|
+
UserGroupRealService.prototype.getGroupIdsByUser = function (userId) {
|
|
18182
|
+
var apiUrl = this.serviceUri + "/GetGroupIdsByUser?userId=" + userId;
|
|
18183
|
+
return this.defaultGet(apiUrl);
|
|
18184
|
+
};
|
|
18181
18185
|
return UserGroupRealService;
|
|
18182
18186
|
}(BaseService));
|
|
18183
18187
|
UserGroupRealService.ɵprov = i0.ɵɵdefineInjectable({ factory: function UserGroupRealService_Factory() { return new UserGroupRealService(i0.ɵɵinject(i1$1.HttpClient), i0.ɵɵinject(i0.INJECTOR), i0.ɵɵinject(ModuleConfigService)); }, token: UserGroupRealService, providedIn: "root" });
|