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.
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +3 -4
- package/fesm2015/iptdevs-design-system.mjs +2 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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/
|
|
3587
|
-
this.
|
|
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';
|