aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.ts
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-03-10 10:33:36 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-03-10 10:33:36 +0100
commit758b996dc6effcab6031b32c0bd0b81f234c1a63 (patch)
tree8a40c0882bd00932bd9003077d4c0d3db456bf24 /client/src/app/app.component.ts
parent86e83939869976e9b4dfa6dc9d3785a284bd598c (diff)
downloadPeerTube-758b996dc6effcab6031b32c0bd0b81f234c1a63.tar.gz
PeerTube-758b996dc6effcab6031b32c0bd0b81f234c1a63.tar.zst
PeerTube-758b996dc6effcab6031b32c0bd0b81f234c1a63.zip
Client: switch to @nglibs/meta
Diffstat (limited to 'client/src/app/app.component.ts')
-rw-r--r--client/src/app/app.component.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts
index 47d2bfdd2..8b4b4118b 100644
--- a/client/src/app/app.component.ts
+++ b/client/src/app/app.component.ts
@@ -1,8 +1,6 @@
1import { Component, OnInit, ViewContainerRef } from '@angular/core'; 1import { Component, OnInit, ViewContainerRef } from '@angular/core';
2import { Router } from '@angular/router'; 2import { Router } from '@angular/router';
3 3
4import { MetaService } from 'ng2-meta';
5
6import { AuthService } from './core'; 4import { AuthService } from './core';
7import { UserService } from './shared'; 5import { UserService } from './shared';
8 6
@@ -27,7 +25,6 @@ export class AppComponent implements OnInit {
27 25
28 constructor( 26 constructor(
29 private router: Router, 27 private router: Router,
30 private metaService: MetaService,
31 private authService: AuthService, 28 private authService: AuthService,
32 private userService: UserService, 29 private userService: UserService,
33 viewContainerRef: ViewContainerRef 30 viewContainerRef: ViewContainerRef