iptdevs-design-system 3.2.118 → 3.2.119
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/esm2020/lib/core/services/user-service/user-service.mjs +3 -2
- package/fesm2015/iptdevs-design-system.mjs +2 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/user-service/user-service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1008,7 +1008,8 @@ class UserService extends IPTGeneralService {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
searchUsersForTeamAssignment(params) {
|
|
1010
1010
|
let serviceUrl = this.SERVICE_URL + 'post/search/users/for/team/assignment';
|
|
1011
|
-
|
|
1011
|
+
this.generateRequestParams(params);
|
|
1012
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
1012
1013
|
}
|
|
1013
1014
|
}
|
|
1014
1015
|
UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|