iptdevs-design-system 2.6.41 → 2.6.43
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/models/classroom/classroom-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +7 -2
- package/fesm2015/iptdevs-design-system.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +6 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/classroom/classroom-rq.model.d.ts +14 -0
- package/lib/core/services/classroom-service/classroom-service.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -2039,7 +2039,12 @@ class ClassroomService {
|
|
|
2039
2039
|
this.SERVICE_URL = 'https://iptdev.com.co/lab/academic/api/';
|
|
2040
2040
|
}
|
|
2041
2041
|
getClassroomsByModality(params) {
|
|
2042
|
-
let serviceUrl = this.SERVICE_URL + '
|
|
2042
|
+
let serviceUrl = this.SERVICE_URL + 'post/classroom/by/modality';
|
|
2043
|
+
this.generateRequestParams(params);
|
|
2044
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
2045
|
+
}
|
|
2046
|
+
getClassroomByIdCalendar(params) {
|
|
2047
|
+
let serviceUrl = this.SERVICE_URL + 'post/classroom/by/idcalendar';
|
|
2043
2048
|
this.generateRequestParams(params);
|
|
2044
2049
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
2045
2050
|
}
|