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.
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/course-service/course-service.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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);
|