@tuki-io/tuki-widgets 0.0.49 → 0.0.51
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/user-manage/src/services/users-search.service.mjs +2 -1
- package/esm2020/users-list/src/services/users-search.service.mjs +3 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +1 -0
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +2 -0
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +1 -0
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +2 -0
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -640,6 +640,7 @@ class UsersSearchService {
|
|
|
640
640
|
quickRegularUsersSearch(searchParams, isMigratedUsersOnly, pageSize) {
|
|
641
641
|
console.log('searchParams = ', searchParams);
|
|
642
642
|
this.searchParams = searchParams || { customerid: this.customerId, siteid: this.siteId };
|
|
643
|
+
this.searchParams['provisionType'] = 'CUCM';
|
|
643
644
|
return this.apiService.fetchPagination(API.QUICK_USERS_SEARCH, this.pageSize, pageSize || this.pageIndex, this.searchParams)
|
|
644
645
|
.pipe(map((res) => {
|
|
645
646
|
// this.totals = this.totals || {};
|
|
@@ -663,6 +664,7 @@ class UsersSearchService {
|
|
|
663
664
|
}
|
|
664
665
|
quickWebexUsersSearch(searchParams, isMigratedUsersOnly, pageSize) {
|
|
665
666
|
this.searchParams = searchParams || { customerid: this.customerId, siteid: this.siteId };
|
|
667
|
+
this.searchParams['provisionType'] = 'CUCM';
|
|
666
668
|
return this.webexApiService.fetchPagination(API.QUICK_USERS_SEARCH, this.pageSize, pageSize || this.pageIndex, this.searchParams)
|
|
667
669
|
.pipe(map((res) => {
|
|
668
670
|
if (!isMigratedUsersOnly) {
|