Kaynağa Gözat

[Login] change password enhancements

tigger 1 yıl önce
ebeveyn
işleme
e685b61211
3 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  1. 2 0
      src/app/app.config.ts
  2. 1 0
      src/app/app.routes.ts
  3. 1 1
      src/dependencies/angularlib

+ 2 - 0
src/app/app.config.ts

@@ -9,6 +9,7 @@ import { Angularlib } from 'angularlib/angularlib.module';
 import { provideStore } from '@ngxs/store';
 import { withNgxsReduxDevtoolsPlugin } from '@ngxs/devtools-plugin';
 import { withNgxsStoragePlugin } from '@ngxs/storage-plugin';
+import { LoginModule } from 'angularlib/login';
 
 export const appConfig: ApplicationConfig = {
   providers: [
@@ -17,6 +18,7 @@ export const appConfig: ApplicationConfig = {
     provideStore([],withNgxsStoragePlugin({keys:'*'}),withNgxsReduxDevtoolsPlugin()),
     importProvidersFrom(DpModule),
     importProvidersFrom(Angularlib),
+    importProvidersFrom(LoginModule),
     provideRouter(routes,withHashLocation(),withRouterConfig({onSameUrlNavigation:'reload'})),
     provideHttpClient()
   ]

+ 1 - 0
src/app/app.routes.ts

@@ -4,6 +4,7 @@ import { DashboardComponent } from './dashboard/dashboard.component';
 export const routes: Routes = [
     { path: '', redirectTo: '/dashboard', pathMatch: 'full' },
     { path:'dashboard', component: DashboardComponent, data: {title: 'Financial Information System'}},
+    { path:'auth', loadChildren: () => import('angularlib/login/login.module').then(m => m.LoginModule)},
     { path:'tender', loadChildren: () => import('fis/tender/tender.module').then(m => m.TenderModule)},
     { path:'leave', loadChildren: () => import('fis/leave/leave.module').then(m => m.LeaveModule)}
 ];

+ 1 - 1
src/dependencies/angularlib

@@ -1 +1 @@
-Subproject commit 93b11be1cc040b6988f490c7760cbcb29034f34a
+Subproject commit 4624caa5b9e9ace30b2c4600a0829b5b1800fc96