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.
@@ -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
- this.SERVICE_URL = 'https://iptdev.com.co/lab/users/api/';
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';