iptdevs-design-system 3.1.798 → 3.1.800

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.
@@ -6513,6 +6513,11 @@ class AcademicService extends IPTGeneralService {
6513
6513
  this.generateRequestParams(params);
6514
6514
  return this.http.post(serviceUrl, this.httpOptions);
6515
6515
  }
6516
+ obtainCourseStatusByArea(params) {
6517
+ let serviceUrl = this.SERVICE_URL + 'obtain/courses/status/by/area';
6518
+ this.generateRequestParams(params);
6519
+ return this.http.post(serviceUrl, this.httpOptions);
6520
+ }
6516
6521
  getEventsByCourseCode(coudeCourse) {
6517
6522
  let serviceUrl = this.SERVICE_URL + 'get/events/by/course/' + coudeCourse;
6518
6523
  return this.http.get(serviceUrl);