iptdevs-design-system 3.1.13 → 3.1.15

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.
@@ -4905,6 +4905,11 @@ class AttendanceService extends IPTGeneralService {
4905
4905
  let serviceUrl = `${this.SERVICE_URL}get/all/data/attendances/by/course/${courseCode}`;
4906
4906
  return this.http.get(serviceUrl);
4907
4907
  }
4908
+ newAttendanceByEvent(params) {
4909
+ let serviceUrl = `${this.SERVICE_URL}post/register/new/attendance/by/event`;
4910
+ this.generateRequestParams(params);
4911
+ return this.http.post(serviceUrl, this.httpOptions);
4912
+ }
4908
4913
  }
4909
4914
  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 });
4910
4915
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });