iptdevs-design-system 3.1.929 → 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 +16 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/attendance/attendance.interface.d.ts +80 -5
- package/lib/core/services/attendance-service/attendance.service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -7127,6 +7127,21 @@ class AttendanceService extends IPTGeneralService {
|
|
|
7127
7127
|
this.generateRequestParams(param);
|
|
7128
7128
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
7129
7129
|
}
|
|
7130
|
+
updateOrCreateAttendances(params) {
|
|
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';
|
|
7142
|
+
this.generateRequestParams(params);
|
|
7143
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
7144
|
+
}
|
|
7130
7145
|
}
|
|
7131
7146
|
AttendanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7132
7147
|
AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });
|