Archived
Private
Public Access
1
0

Login finished

This commit is contained in:
2023-04-15 17:54:37 +02:00
parent 7165ce1ae3
commit 72f08fc9cb
25 changed files with 412 additions and 62 deletions

View File

@@ -3,12 +3,15 @@ import { Routes } from '@angular/router';
export const routes: Routes = [
{
path: '',
redirectTo: 'folder/inbox',
redirectTo: 'home',
pathMatch: 'full',
},
{
path: 'folder/:id',
loadComponent: () =>
import('./folder/folder.page').then((m) => m.FolderPage),
path: 'home',
loadComponent: () => import('./home/home.page').then( m => m.HomePage)
},
{
path: 'login',
loadComponent: () => import('./login/login.page').then( m => m.LoginPage)
},
];