ntk-cms-api 1.2.74 → 1.2.76
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/ntk-cms-api.umd.js +2 -17
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/service/core-main/coreSiteUser.service.js +3 -18
- package/esm2015/lib/service/estate/estateProperty.service.js +1 -1
- package/fesm2015/ntk-cms-api.js +2 -16
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/core-main/coreSiteUser.service.d.ts +1 -3
- package/lib/service/estate/estateProperty.service.d.ts +3 -3
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3098,25 +3098,10 @@
|
|
|
3098
3098
|
CoreSiteUserService.prototype.getModuleControllerUrl = function () {
|
|
3099
3099
|
return 'CoreSiteUser';
|
|
3100
3100
|
};
|
|
3101
|
-
CoreSiteUserService.prototype.
|
|
3102
|
-
var _this = this;
|
|
3103
|
-
if (model == null) {
|
|
3104
|
-
model = new FilterModel();
|
|
3105
|
-
}
|
|
3106
|
-
return this.http
|
|
3107
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteUser', model, {
|
|
3108
|
-
headers: this.getHeaders(),
|
|
3109
|
-
})
|
|
3110
|
-
.pipe(operators.retry(this.configApiRetry),
|
|
3111
|
-
// catchError(this.handleError)
|
|
3112
|
-
operators.map(function (ret) {
|
|
3113
|
-
return _this.errorExceptionResultCheck(ret);
|
|
3114
|
-
}));
|
|
3115
|
-
};
|
|
3116
|
-
CoreSiteUserService.prototype.ServiceGetCurrentSiteUsers = function () {
|
|
3101
|
+
CoreSiteUserService.prototype.ServiceGetAllSiteCurrentUser = function () {
|
|
3117
3102
|
var _this = this;
|
|
3118
3103
|
return this.http
|
|
3119
|
-
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/
|
|
3104
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteCurrentUser', {
|
|
3120
3105
|
headers: this.getHeaders(),
|
|
3121
3106
|
})
|
|
3122
3107
|
.pipe(operators.retry(this.configApiRetry),
|