iptdevs-design-system 3.1.714 → 3.1.716

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.
@@ -8040,9 +8040,13 @@ class NotesService extends IPTGeneralService {
8040
8040
  return this.http.put(serviceUrl, this.httpOptions);
8041
8041
  }
8042
8042
  deleteNoteByTypeAndStudent(params) {
8043
- let serviceUrl = this.SERVICE_URL + 'delete/note/by/type/and/student';
8043
+ const serviceUrl = this.SERVICE_URL + 'delete/note/by/type/and/student';
8044
8044
  this.generateRequestParams(params);
8045
- return this.http.delete(serviceUrl, this.httpOptions);
8045
+ const options = {
8046
+ headers: this.httpOptions.headers,
8047
+ body: this.httpOptions.body,
8048
+ };
8049
+ return this.http.delete(serviceUrl, options);
8046
8050
  }
8047
8051
  getNotesByCourseExcel(params) {
8048
8052
  const serviceUrl = this.SERVICE_URL + 'post/notes/by/course/export';