aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/reset-password
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-24 10:40:38 +0200
committerGitHub <noreply@github.com>2018-09-24 10:40:38 +0200
commit6937f26a5e8b17c7a27f267bce2682ab01611f2f (patch)
tree5d9b160e257a2bd116e67c9363b798f422ead44c /client/src/app/reset-password
parent01448622992b12318a2fff508e501732b59dd6be (diff)
parent0b4e5fe32708afce54212810738aa4d0c3dc178d (diff)
downloadPeerTube-6937f26a5e8b17c7a27f267bce2682ab01611f2f.tar.gz
PeerTube-6937f26a5e8b17c7a27f267bce2682ab01611f2f.tar.zst
PeerTube-6937f26a5e8b17c7a27f267bce2682ab01611f2f.zip
Merge pull request #1105 from BO41/unused-imports
remove unused imports
Diffstat (limited to 'client/src/app/reset-password')
-rw-r--r--client/src/app/reset-password/reset-password.component.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/app/reset-password/reset-password.component.ts b/client/src/app/reset-password/reset-password.component.ts
index cb4a634f1..af1298de6 100644
--- a/client/src/app/reset-password/reset-password.component.ts
+++ b/client/src/app/reset-password/reset-password.component.ts
@@ -2,7 +2,6 @@ import { Component, OnInit } from '@angular/core'
2import { ActivatedRoute, Router } from '@angular/router' 2import { ActivatedRoute, Router } from '@angular/router'
3import { UserService, UserValidatorsService } from '@app/shared' 3import { UserService, UserValidatorsService } from '@app/shared'
4import { NotificationsService } from 'angular2-notifications' 4import { NotificationsService } from 'angular2-notifications'
5import { AuthService } from '../core'
6import { FormReactive } from '../shared' 5import { FormReactive } from '../shared'
7import { I18n } from '@ngx-translate/i18n-polyfill' 6import { I18n } from '@ngx-translate/i18n-polyfill'
8import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' 7import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
@@ -22,7 +21,6 @@ export class ResetPasswordComponent extends FormReactive implements OnInit {
22 protected formValidatorService: FormValidatorService, 21 protected formValidatorService: FormValidatorService,
23 private resetPasswordValidatorsService: ResetPasswordValidatorsService, 22 private resetPasswordValidatorsService: ResetPasswordValidatorsService,
24 private userValidatorsService: UserValidatorsService, 23 private userValidatorsService: UserValidatorsService,
25 private authService: AuthService,
26 private userService: UserService, 24 private userService: UserService,
27 private notificationsService: NotificationsService, 25 private notificationsService: NotificationsService,
28 private router: Router, 26 private router: Router,