aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/shared/actor-avatar-info.component.ts
diff options
context:
space:
mode:
authorBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
committerBO41 <lukasw41@gmail.com>2018-09-22 20:11:16 +0200
commit23db998f07d674c621972a769df73203b14e093a (patch)
tree6ecb88dc98bdbe69e113e4841d05aec34d6d0491 /client/src/app/+my-account/shared/actor-avatar-info.component.ts
parent9fe4406794aaa4503d090ca4bfe6872b4e556178 (diff)
downloadPeerTube-23db998f07d674c621972a769df73203b14e093a.tar.gz
PeerTube-23db998f07d674c621972a769df73203b14e093a.tar.zst
PeerTube-23db998f07d674c621972a769df73203b14e093a.zip
remove unused imports
Diffstat (limited to 'client/src/app/+my-account/shared/actor-avatar-info.component.ts')
-rw-r--r--client/src/app/+my-account/shared/actor-avatar-info.component.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/client/src/app/+my-account/shared/actor-avatar-info.component.ts b/client/src/app/+my-account/shared/actor-avatar-info.component.ts
index e0b25ad33..7b80b1ed4 100644
--- a/client/src/app/+my-account/shared/actor-avatar-info.component.ts
+++ b/client/src/app/+my-account/shared/actor-avatar-info.component.ts
@@ -1,7 +1,5 @@
1import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core' 1import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core'
2import { AuthService } from '../../core'
3import { ServerService } from '../../core/server' 2import { ServerService } from '../../core/server'
4import { UserService } from '../../shared/users'
5import { NotificationsService } from 'angular2-notifications' 3import { NotificationsService } from 'angular2-notifications'
6import { VideoChannel } from '@app/shared/video-channel/video-channel.model' 4import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
7import { Account } from '@app/shared/account/account.model' 5import { Account } from '@app/shared/account/account.model'
@@ -19,8 +17,6 @@ export class ActorAvatarInfoComponent {
19 @Output() avatarChange = new EventEmitter<FormData>() 17 @Output() avatarChange = new EventEmitter<FormData>()
20 18
21 constructor ( 19 constructor (
22 private userService: UserService,
23 private authService: AuthService,
24 private serverService: ServerService, 20 private serverService: ServerService,
25 private notificationsService: NotificationsService 21 private notificationsService: NotificationsService
26 ) {} 22 ) {}