iptdevs-design-system 2.6.55 → 2.6.56
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/environments/environment.d.ts +5 -0
- package/esm2020/environments/environment.mjs +6 -0
- package/esm2020/lib/core/services/user-service/user-service.mjs +4 -2
- package/fesm2015/iptdevs-design-system.mjs +8 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +8 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -704,10 +704,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
704
704
|
type: Output
|
|
705
705
|
}] } });
|
|
706
706
|
|
|
707
|
+
const environment = {
|
|
708
|
+
production: false,
|
|
709
|
+
baseUrl: 'https://lab.iptdev.com.co/',
|
|
710
|
+
assets: 'https://qa.iptdev.com.co/assets/'
|
|
711
|
+
};
|
|
712
|
+
|
|
707
713
|
class UserService {
|
|
708
714
|
constructor(http) {
|
|
709
715
|
this.http = http;
|
|
710
|
-
|
|
716
|
+
// private SERVICE_URL = 'https://iptdev.com.co/lab/users/api/';
|
|
717
|
+
this.SERVICE_URL = environment.baseUrl + 'users/api/';
|
|
711
718
|
}
|
|
712
719
|
login(userLogin) {
|
|
713
720
|
let serviceUrl = this.SERVICE_URL + 'post/login';
|