diff options
Diffstat (limited to 'client/src/app/account/account.module.ts')
-rw-r--r-- | client/src/app/account/account.module.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/account/account.module.ts b/client/src/app/account/account.module.ts index 75f2ee6f9..f6c141ae6 100644 --- a/client/src/app/account/account.module.ts +++ b/client/src/app/account/account.module.ts | |||
@@ -2,6 +2,8 @@ import { NgModule } from '@angular/core'; | |||
2 | 2 | ||
3 | import { AccountRoutingModule } from './account-routing.module'; | 3 | import { AccountRoutingModule } from './account-routing.module'; |
4 | import { AccountComponent } from './account.component'; | 4 | import { AccountComponent } from './account.component'; |
5 | import { AccountChangePasswordComponent } from './account-change-password'; | ||
6 | import { AccountDetailsComponent } from './account-details'; | ||
5 | import { AccountService } from './account.service'; | 7 | import { AccountService } from './account.service'; |
6 | import { SharedModule } from '../shared'; | 8 | import { SharedModule } from '../shared'; |
7 | 9 | ||
@@ -12,7 +14,9 @@ import { SharedModule } from '../shared'; | |||
12 | ], | 14 | ], |
13 | 15 | ||
14 | declarations: [ | 16 | declarations: [ |
15 | AccountComponent | 17 | AccountComponent, |
18 | AccountChangePasswordComponent, | ||
19 | AccountDetailsComponent | ||
16 | ], | 20 | ], |
17 | 21 | ||
18 | exports: [ | 22 | exports: [ |