feat(lootboxes): add lootbox selection feature and routes

This commit is contained in:
Jan-Marlon Leibl 2025-04-23 09:47:32 +02:00
commit b58ceeeaab
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
8 changed files with 362 additions and 0 deletions

View file

@ -26,4 +26,9 @@ export const routes: Routes = [
loadComponent: () => import('./feature/game/slots/slots.component'),
canActivate: [authGuard],
},
{
path: 'game/lootboxes',
loadComponent: () => import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
canActivate: [authGuard],
},
];