iptdevs-design-system 3.1.717 → 3.1.718
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/lib/core/models/notes/notes.interface.mjs +1 -1
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +1 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/notes/notes.interface.d.ts +7 -0
- package/lib/core/services/notes-service/notes.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -8042,7 +8042,7 @@ class NotesService extends IPTGeneralService {
|
|
|
8042
8042
|
deleteNoteByTypeAndStudent(params) {
|
|
8043
8043
|
let serviceUrl = this.SERVICE_URL + 'delete/note/by/type/and/student';
|
|
8044
8044
|
this.generateRequestParams(params);
|
|
8045
|
-
return this.http.
|
|
8045
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
8046
8046
|
}
|
|
8047
8047
|
getNotesByCourseExcel(params) {
|
|
8048
8048
|
const serviceUrl = this.SERVICE_URL + 'post/notes/by/course/export';
|