Merge pull request 'feat: Create Coinflip ui (CAS-64)' (!206) from feat/coinflip into main
All checks were successful
Release / Release (push) Successful in 58s
Release / Build Backend Image (push) Successful in 23s
Release / Build Frontend Image (push) Successful in 46s

Reviewed-on: #206
This commit is contained in:
Jan K9f 2025-05-21 09:13:34 +00:00
commit 45ba7d9693
No known key found for this signature in database
GPG key ID: 944223E4D46B7412
9 changed files with 531 additions and 3 deletions

View file

@ -45,6 +45,11 @@ export const routes: Routes = [
loadComponent: () => import('./feature/game/blackjack/blackjack.component'),
canActivate: [authGuard],
},
{
path: 'game/coinflip',
loadComponent: () => import('./feature/game/coinflip/coinflip.component'),
canActivate: [authGuard],
},
{
path: 'game/slots',
loadComponent: () => import('./feature/game/slots/slots.component'),