diff options
Diffstat (limited to 'client/src/app/account/account.component.ts')
-rw-r--r-- | client/src/app/account/account.component.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/client/src/app/account/account.component.ts b/client/src/app/account/account.component.ts index 9b6b5fbf4..14452a73e 100644 --- a/client/src/app/account/account.component.ts +++ b/client/src/app/account/account.component.ts | |||
@@ -4,8 +4,7 @@ import { Router } from '@angular/router'; | |||
4 | 4 | ||
5 | import { NotificationsService } from 'angular2-notifications'; | 5 | import { NotificationsService } from 'angular2-notifications'; |
6 | 6 | ||
7 | import { AccountService } from './account.service'; | 7 | import { FormReactive, UserService, USER_PASSWORD } from '../shared'; |
8 | import { FormReactive, USER_PASSWORD } from '../shared'; | ||
9 | 8 | ||
10 | @Component({ | 9 | @Component({ |
11 | selector: 'my-account', | 10 | selector: 'my-account', |
@@ -29,7 +28,7 @@ export class AccountComponent extends FormReactive implements OnInit { | |||
29 | private formBuilder: FormBuilder, | 28 | private formBuilder: FormBuilder, |
30 | private router: Router, | 29 | private router: Router, |
31 | private notificationsService: NotificationsService, | 30 | private notificationsService: NotificationsService, |
32 | private accountService: AccountService | 31 | private userService: UserService |
33 | ) { | 32 | ) { |
34 | super(); | 33 | super(); |
35 | } | 34 | } |
@@ -58,7 +57,7 @@ export class AccountComponent extends FormReactive implements OnInit { | |||
58 | return; | 57 | return; |
59 | } | 58 | } |
60 | 59 | ||
61 | this.accountService.changePassword(newPassword).subscribe( | 60 | this.userService.changePassword(newPassword).subscribe( |
62 | () => this.notificationsService.success('Success', 'Password updated.'), | 61 | () => this.notificationsService.success('Success', 'Password updated.'), |
63 | 62 | ||
64 | err => this.error = err | 63 | err => this.error = err |