utn-cli 2.1.53 → 2.1.54
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
|
@@ -104,6 +104,11 @@ export class ContenedorComponentesComponent implements OnInit, OnDestroy, AfterV
|
|
|
104
104
|
{ id: 'nav_estadisticas', etiqueta: 'Estadísticas del módulo', icono: 'bar_chart', accion: () => this.irAEstadisticasDelModulo(), requierePermiso: true, posicion: 30 },
|
|
105
105
|
{ id: 'nav_accesibilidad', etiqueta: 'Accesibilidad', icono: 'accessibility', accion: () => this.irAAccesibilidad(), requierePermiso: false, posicion: 40 },
|
|
106
106
|
{ id: 'nav_declaracion_ia', etiqueta: 'Declaración de IA', icono: 'smart_toy', accion: () => this.irADeclaracionIA(), requierePermiso: false, posicion: 50 },
|
|
107
|
+
{ id: 'nav_politicas', etiqueta: 'Políticas de seguridad', icono: 'security', accion: () => this.irAPoliticas(), requierePermiso: false, posicion: 50 },
|
|
108
|
+
{ id: 'nav_acercade', etiqueta: 'Acerca de', icono: 'info', accion: () => this.irAAcercaDe(), requierePermiso: false, posicion: 50 },
|
|
109
|
+
{ id: 'nav_conozcanos', etiqueta: 'Conózcanos', icono: 'groups', accion: () => this.irAConozcanos(), requierePermiso: false, posicion: 50 },
|
|
110
|
+
{ id: 'nav_sabias_que', etiqueta: 'Sabías qué', icono: 'lightbulb', accion: () => this.irASabiasQue(), requierePermiso: false, posicion: 50 },
|
|
111
|
+
{ id: 'nav_preguntas_frecuentes', etiqueta: 'Preguntas frecuentes', icono: 'question_answer', accion: () => this.irAPreguntasFrecuentes(), requierePermiso: false, posicion: 50 },
|
|
107
112
|
];
|
|
108
113
|
}
|
|
109
114
|
|
|
@@ -298,6 +303,26 @@ export class ContenedorComponentesComponent implements OnInit, OnDestroy, AfterV
|
|
|
298
303
|
this.router.navigate(['/ia']);
|
|
299
304
|
}
|
|
300
305
|
|
|
306
|
+
irAAcercaDe(): void {
|
|
307
|
+
this.router.navigate(['/acercade']);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
irAPoliticas(): void {
|
|
311
|
+
this.router.navigate(['/politicas']);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
irAConozcanos(): void {
|
|
315
|
+
this.router.navigate(['/conozcanos']);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
irASabiasQue(): void {
|
|
319
|
+
this.router.navigate(['/sabiasque']);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
irAPreguntasFrecuentes(): void {
|
|
323
|
+
this.router.navigate(['/preguntasfrecuentes']);
|
|
324
|
+
}
|
|
325
|
+
|
|
301
326
|
irAVideo(): void {
|
|
302
327
|
window.open(this.EnlaceDelVideo, '_blank', 'noopener,noreferrer');
|
|
303
328
|
}
|