Merge pull request 'fix: lootbox routing' (!281) from fix-lootbox-routing into main
Reviewed-on: #281 Reviewed-by: Jan K9f <jan@kjan.email>
This commit is contained in:
commit
9a7049d6ab
1 changed files with 6 additions and 8 deletions
|
@ -62,14 +62,12 @@ export const routes: Routes = [
|
||||||
loadComponent: () =>
|
loadComponent: () =>
|
||||||
import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
|
import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
|
||||||
canActivate: [authGuard],
|
canActivate: [authGuard],
|
||||||
children: [
|
},
|
||||||
{
|
{
|
||||||
path: 'open/:id',
|
path: 'lootboxes/open/:id',
|
||||||
loadComponent: () =>
|
loadComponent: () =>
|
||||||
import('./feature/lootboxes/lootbox-opening/lootbox-opening.component'),
|
import('./feature/lootboxes/lootbox-opening/lootbox-opening.component'),
|
||||||
canActivate: [authGuard],
|
canActivate: [authGuard],
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'dice',
|
path: 'dice',
|
||||||
|
|
Reference in a new issue