aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/shared/actor-avatar-info.component.ts
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/+my-account/shared/actor-avatar-info.component.ts
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/+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 ) {}