diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-24 10:40:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-24 10:40:38 +0200 |
commit | 6937f26a5e8b17c7a27f267bce2682ab01611f2f (patch) | |
tree | 5d9b160e257a2bd116e67c9363b798f422ead44c /client/src/app/shared/user-subscription | |
parent | 01448622992b12318a2fff508e501732b59dd6be (diff) | |
parent | 0b4e5fe32708afce54212810738aa4d0c3dc178d (diff) | |
download | PeerTube-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/shared/user-subscription')
-rw-r--r-- | client/src/app/shared/user-subscription/subscribe-button.component.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/client/src/app/shared/user-subscription/subscribe-button.component.ts b/client/src/app/shared/user-subscription/subscribe-button.component.ts index ba7acf69a..b5873a2ee 100644 --- a/client/src/app/shared/user-subscription/subscribe-button.component.ts +++ b/client/src/app/shared/user-subscription/subscribe-button.component.ts | |||
@@ -1,7 +1,4 @@ | |||
1 | import { Component, Input, OnInit } from '@angular/core' | 1 | import { Component, Input, OnInit } from '@angular/core' |
2 | import { AuthService } from '@app/core' | ||
3 | import { RestExtractor } from '@app/shared/rest' | ||
4 | import { RedirectService } from '@app/core/routing/redirect.service' | ||
5 | import { UserSubscriptionService } from '@app/shared/user-subscription/user-subscription.service' | 2 | import { UserSubscriptionService } from '@app/shared/user-subscription/user-subscription.service' |
6 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' | 3 | import { VideoChannel } from '@app/shared/video-channel/video-channel.model' |
7 | import { NotificationsService } from 'angular2-notifications' | 4 | import { NotificationsService } from 'angular2-notifications' |
@@ -20,9 +17,6 @@ export class SubscribeButtonComponent implements OnInit { | |||
20 | subscribed: boolean | 17 | subscribed: boolean |
21 | 18 | ||
22 | constructor ( | 19 | constructor ( |
23 | private authService: AuthService, | ||
24 | private restExtractor: RestExtractor, | ||
25 | private redirectService: RedirectService, | ||
26 | private notificationsService: NotificationsService, | 20 | private notificationsService: NotificationsService, |
27 | private userSubscriptionService: UserSubscriptionService, | 21 | private userSubscriptionService: UserSubscriptionService, |
28 | private i18n: I18n | 22 | private i18n: I18n |