iptdevs-design-system 3.1.25 → 3.1.26
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/parameters-service/parameters.service.mjs +9 -1
- package/fesm2015/iptdevs-design-system.mjs +8 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +8 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/parameters-service/parameters.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1440,6 +1440,14 @@ class ParameterService extends IPTGeneralService {
|
|
|
1440
1440
|
let serviceUrl = this.SERVICE_URL + 'get/cities/state/' + name;
|
|
1441
1441
|
return this.http.get(serviceUrl);
|
|
1442
1442
|
}
|
|
1443
|
+
getActionsAdminStudent() {
|
|
1444
|
+
let serviceUrl = this.SERVICE_URL + 'get/all/actions/admin/student';
|
|
1445
|
+
return this.http.get(serviceUrl);
|
|
1446
|
+
}
|
|
1447
|
+
getReasonObservationStudent() {
|
|
1448
|
+
let serviceUrl = this.SERVICE_URL + 'get/all/reason/observation/student';
|
|
1449
|
+
return this.http.get(serviceUrl);
|
|
1450
|
+
}
|
|
1443
1451
|
}
|
|
1444
1452
|
ParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ParameterService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1445
1453
|
ParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: ParameterService, providedIn: 'root' });
|