refactor: stricter domain: auth

This commit is contained in:
2026-04-11 13:52:59 +02:00
parent 58e338246f
commit 39b85e2e3a
13 changed files with 33 additions and 29 deletions

View File

@@ -10,12 +10,12 @@ export const routes: Routes = [
{
path: 'login',
loadComponent: () =>
import('./domains/auth/feature/login/login.component').then((module) => module.LoginComponent)
import('./domains/authentication/feature/login/login.component').then((module) => module.LoginComponent)
},
{
path: 'register',
loadComponent: () =>
import('./domains/auth/feature/register/register.component').then((module) => module.RegisterComponent)
import('./domains/authentication/feature/register/register.component').then((module) => module.RegisterComponent)
},
{
path: 'invite/:inviteId',