PeerTube/client/src/app/app.component.ts

20 lines
416 B
TypeScript
Raw Normal View History

2016-11-04 10:23:18 -05:00
import { Component, ViewContainerRef } from '@angular/core';
2016-09-06 15:40:57 -05:00
import { Router } from '@angular/router';
2016-03-14 07:50:19 -05:00
@Component({
2016-11-04 10:23:18 -05:00
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.scss' ]
2016-03-14 07:50:19 -05:00
})
export class AppComponent {
2016-11-04 10:23:18 -05:00
constructor(
private router: Router,
viewContainerRef: ViewContainerRef
) {}
2016-05-24 16:00:58 -05:00
isInAdmin() {
return this.router.url.indexOf('/admin/') !== -1;
2016-03-14 07:50:19 -05:00
}
}