iptdevs-design-system 2.7.44 → 2.7.45

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.
@@ -2676,6 +2676,11 @@ class CourseService extends IPTGeneralService {
2676
2676
  this.generateRequestParams(params);
2677
2677
  return this.http.post(serviceUrl, this.httpOptions);
2678
2678
  }
2679
+ getCourseByCodeAllData(params) {
2680
+ let serviceUrl = this.SERVICE_URL + 'post/course/by/cod/all/data';
2681
+ this.generateRequestParams(params);
2682
+ return this.http.post(serviceUrl, this.httpOptions);
2683
+ }
2679
2684
  getCoursesByTeacher(params) {
2680
2685
  let serviceUrl = this.SERVICE_URL + 'post/course/by/teacher';
2681
2686
  this.generateRequestParams(params);