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.
@@ -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 = `${this.SERVICE_URL}update-or-create-attendances`;
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
  }