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.
@@ -3098,25 +3098,10 @@
3098
3098
  CoreSiteUserService.prototype.getModuleControllerUrl = function () {
3099
3099
  return 'CoreSiteUser';
3100
3100
  };
3101
- CoreSiteUserService.prototype.ServiceGetAllSiteUser = function (model) {
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() + '/GetCurrentSiteUsers', {
3104
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteCurrentUser', {
3120
3105
  headers: this.getHeaders(),
3121
3106
  })
3122
3107
  .pipe(operators.retry(this.configApiRetry),