iptdevs-design-system 3.1.843 → 3.1.845

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.
@@ -3600,6 +3600,16 @@ class CourseService extends IPTGeneralService {
3600
3600
  let serviceUrl = this.SERVICE_URL + 'course/schedule/' + request.course_code;
3601
3601
  return this.http.post(serviceUrl, request);
3602
3602
  }
3603
+ deleteCourseEvent(params) {
3604
+ let serviceUrl = this.SERVICE_URL + 'delete/course/event';
3605
+ this.generateRequestParams(params);
3606
+ return this.http.post(serviceUrl, this.httpOptions);
3607
+ }
3608
+ checkEventAttendance(params) {
3609
+ let serviceUrl = this.SERVICE_URL + 'check/event/attendance';
3610
+ this.generateRequestParams(params);
3611
+ return this.http.post(serviceUrl, this.httpOptions);
3612
+ }
3603
3613
  }
3604
3614
  CourseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3605
3615
  CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });