npm_microservice 1.0.32 → 1.0.33
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/dist/service.js
CHANGED
|
@@ -1806,6 +1806,11 @@ var require_ClassScheduleService = __commonJS({
|
|
|
1806
1806
|
this.module = "classScheduleService";
|
|
1807
1807
|
this.service = "lms";
|
|
1808
1808
|
}
|
|
1809
|
+
async studentPractice(filter = {}) {
|
|
1810
|
+
let url = CONFIG_ROUTER_SERVICE.BASE_URL + "/lms/students-practice";
|
|
1811
|
+
this.service = "students-practice";
|
|
1812
|
+
return this.request("get", url, { params: filter });
|
|
1813
|
+
}
|
|
1809
1814
|
};
|
|
1810
1815
|
module2.exports = ClassScheduleService;
|
|
1811
1816
|
}
|
|
@@ -437,5 +437,10 @@ var ClassScheduleService = class extends BaseService {
|
|
|
437
437
|
this.module = "classScheduleService";
|
|
438
438
|
this.service = "lms";
|
|
439
439
|
}
|
|
440
|
+
async studentPractice(filter = {}) {
|
|
441
|
+
let url = CONFIG_ROUTER_SERVICE.BASE_URL + "/lms/students-practice";
|
|
442
|
+
this.service = "students-practice";
|
|
443
|
+
return this.request("get", url, { params: filter });
|
|
444
|
+
}
|
|
440
445
|
};
|
|
441
446
|
module.exports = ClassScheduleService;
|