Login finished
This commit is contained in:
@@ -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)
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user