iptdevs-design-system 3.1.930 → 3.1.931
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/attendance/attendance.interface.mjs +1 -1
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +12 -2
- package/fesm2015/iptdevs-design-system.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +11 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/attendance/attendance.interface.d.ts +60 -0
- package/lib/core/services/attendance-service/attendance.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -7128,7 +7128,17 @@ class AttendanceService extends IPTGeneralService {
|
|
|
7128
7128
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7129
7129
|
}
|
|
7130
7130
|
updateOrCreateAttendances(params) {
|
|
7131
|
-
const serviceUrl =
|
|
7131
|
+
const serviceUrl = this.SERVICE_URL + 'update/or/create/attendances';
|
|
7132
|
+
this.generateRequestParams(params);
|
|
7133
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7134
|
+
}
|
|
7135
|
+
getTeacherEventsAndStudents(params) {
|
|
7136
|
+
const serviceUrl = this.SERVICE_URL + 'get/teacher/events/and/students';
|
|
7137
|
+
this.generateRequestParams(params);
|
|
7138
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7139
|
+
}
|
|
7140
|
+
getStudentsForEvent(params) {
|
|
7141
|
+
const serviceUrl = this.SERVICE_URL + 'get/students/for/event';
|
|
7132
7142
|
this.generateRequestParams(params);
|
|
7133
7143
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7134
7144
|
}
|