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.
@@ -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 + 'api/post/classroom/by/modality';
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
  }