ntk-cms-api 18.3.456 → 18.3.457

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.
@@ -3722,9 +3722,12 @@ class CoreTokenNotificationService extends ApiCmsServerBase {
3722
3722
  return this.errorExceptionResultCheck(ret);
3723
3723
  }));
3724
3724
  }
3725
- ServiceGetAllOnline() {
3725
+ ServiceGetAllOnline(model) {
3726
+ if (!model) {
3727
+ model = new FilterModel();
3728
+ }
3726
3729
  return this.http
3727
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotification', {
3730
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/SendNotification', model, {
3728
3731
  headers: this.getHeaders(),
3729
3732
  })
3730
3733
  .pipe(retry(this.configApiRetry),