1
0
Fork 0
peertube/client/src/app/app.component.ts

22 lines
494 B
TypeScript
Raw Normal View History

2016-11-04 15:23:18 +00:00
import { Component, ViewContainerRef } from '@angular/core';
2016-09-06 20:40:57 +00:00
import { Router } from '@angular/router';
2016-03-14 12:50:19 +00:00
2017-01-13 13:31:33 +00:00
import { MetaService } from 'ng2-meta';
2016-03-14 12:50:19 +00:00
@Component({
2016-11-04 15:23:18 +00:00
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.scss' ]
2016-03-14 12:50:19 +00:00
})
export class AppComponent {
2016-11-04 15:23:18 +00:00
constructor(
private router: Router,
2016-11-04 16:25:26 +00:00
private metaService: MetaService,
2016-11-04 15:23:18 +00:00
viewContainerRef: ViewContainerRef
) {}
2016-05-24 21:00:58 +00:00
isInAdmin() {
return this.router.url.indexOf('/admin/') !== -1;
2016-03-14 12:50:19 +00:00
}
}