
* add user account email verificiation includes server and client code to: * enable verificationRequired via custom config * send verification email with registration * ask for verification email * verify via email * prevent login if not verified and required * conditional client links to ask for new verification email * allow login for verified=null these are users created when verification not required should still be able to login when verification is enabled * refactor email verifcation pr * change naming from verified to emailVerified * change naming from askVerifyEmail to askSendVerifyEmail * undo unrelated automatic prettier formatting on api/config * use redirectService for home * remove redundant success notification on email verified * revert test.yaml smpt host
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { NgModule } from '@angular/core'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
|
|
import { PreloadSelectedModulesList } from './core'
|
|
import { AppComponent } from '@app/app.component'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: 'admin',
|
|
loadChildren: './+admin/admin.module#AdminModule'
|
|
},
|
|
{
|
|
path: 'my-account',
|
|
loadChildren: './+my-account/my-account.module#MyAccountModule'
|
|
},
|
|
{
|
|
path: 'verify-account',
|
|
loadChildren: './+verify-account/verify-account.module#VerifyAccountModule'
|
|
},
|
|
{
|
|
path: 'accounts',
|
|
loadChildren: './+accounts/accounts.module#AccountsModule'
|
|
},
|
|
{
|
|
path: 'video-channels',
|
|
loadChildren: './+video-channels/video-channels.module#VideoChannelsModule'
|
|
},
|
|
{
|
|
path: 'about',
|
|
loadChildren: './+about/about.module#AboutModule'
|
|
},
|
|
{
|
|
path: '',
|
|
component: AppComponent // Avoid 404, app component will redirect dynamically
|
|
},
|
|
{
|
|
path: '**',
|
|
loadChildren: './+page-not-found/page-not-found.module#PageNotFoundModule'
|
|
}
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forRoot(routes, {
|
|
useHash: Boolean(history.pushState) === false,
|
|
preloadingStrategy: PreloadSelectedModulesList
|
|
})
|
|
],
|
|
providers: [
|
|
PreloadSelectedModulesList
|
|
],
|
|
exports: [ RouterModule ]
|
|
})
|
|
export class AppRoutingModule {}
|