utn-cli 2.1.46 → 2.1.47
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/package.json
CHANGED
|
@@ -8,13 +8,14 @@ export class DatosGlobalesService {
|
|
|
8
8
|
|
|
9
9
|
readonly filtroDeTarjetas$ = new BehaviorSubject<string>('');
|
|
10
10
|
readonly cantidadDeTarjetas$ = new BehaviorSubject<number>(0);
|
|
11
|
+
readonly sidebarVisible$ = new BehaviorSubject<boolean>(false);
|
|
11
12
|
|
|
12
13
|
constructor() { }
|
|
13
14
|
|
|
14
15
|
ObtenerToken() {
|
|
15
16
|
const baseUrl = this.ObtenerURL();
|
|
16
17
|
if (baseUrl === 'http://localhost/') {
|
|
17
|
-
return 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.
|
|
18
|
+
return 'Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOiIxMiIsIklkZW50aWZpY2Fkb3IiOiIxMiIsImlhdCI6MTc3OTcxNjM5NCwiZXhwIjoxNzc5NzUyMzk0fQ.43_5Rnqyi-ArRpND81Z1MoPHluQbilX13AED102ilgQ';
|
|
18
19
|
}
|
|
19
20
|
const match = document.cookie.match(/(?:^|;\s*)_siguid=([^;]+)/);
|
|
20
21
|
let token = match ? decodeURIComponent(match[1]) : '';
|