iptdevs-design-system 3.1.841 → 3.1.842

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.
@@ -3583,9 +3583,8 @@ class CourseService extends IPTGeneralService {
3583
3583
  return this.http.post(serviceUrl, this.httpOptions);
3584
3584
  }
3585
3585
  getLastEventByCourse(params) {
3586
- let serviceUrl = this.SERVICE_URL + 'get/last/event/by/course/{code}';
3587
- this.generateRequestParams(params);
3588
- return this.http.post(serviceUrl, this.httpOptions);
3586
+ let serviceUrl = this.SERVICE_URL + 'get/last/event/by/course/' + params.course_code;
3587
+ return this.http.get(serviceUrl);
3589
3588
  }
3590
3589
  createCourseEvent(params) {
3591
3590
  let serviceUrl = this.SERVICE_URL + 'create/course/event';