tenant/onticket #8

Merged
ncoronel merged 42 commits from tenant/onticket into homologacion 2026-09-23 18:43:51 +00:00
47 changed files with 2308 additions and 629 deletions
Showing only changes of commit e7d24607a6 - Show all commits

View File

@@ -28,6 +28,7 @@ export const routes: Routes = [
path: '',
pathMatch: 'full',
canMatch: [isMultiEventStorefront],
canActivate: [hasMenuGuard('event.index')],
loadComponent: () =>
import('./pages/event-home-page/event-home-page.component').then((m) => m.EventHomePageComponent),
},
@@ -95,6 +96,7 @@ export const routes: Routes = [
{
path: 'evento/:id',
canMatch: [isMultiEventStorefront],
canActivate: [hasMenuGuard('event.detail')],
loadComponent: () =>
import('./pages/event-detail-page/event-detail-page.component').then((m) => m.EventDetailPageComponent),
},