feat(tickets): implement tickets page with ticket component and service

This commit is contained in:
2026-07-21 14:12:23 -03:00
parent 54826a7f8a
commit bc37a91c7f
12 changed files with 261 additions and 65 deletions

View File

@@ -106,6 +106,14 @@ export const routes: Routes = [
(m) => m.PurchaseDetailPage,
),
},
{
path: 'tickets',
canActivate: [hasMenuGuard('tickets')],
loadComponent: () =>
import('./pages/account-page/pages/tickets-page/tickets-page').then(
(m) => m.TicketsPage,
),
},
{
path: '',
redirectTo: 'datos-personales',