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

17 lines
368 B
TypeScript
Raw Normal View History

2016-05-13 12:18:37 +00:00
import { Component } from '@angular/core';
2016-09-06 20:40:57 +00:00
import { Router } from '@angular/router';
2016-03-14 12:50:19 +00:00
@Component({
selector: 'my-app',
template: require('./app.component.html'),
2016-09-06 20:40:57 +00:00
styles: [ require('./app.component.scss') ]
2016-03-14 12:50:19 +00:00
})
export class AppComponent {
constructor(private router: Router) {}
2016-05-24 21:00:58 +00:00
isInAdmin() {
return this.router.url.indexOf('/admin/') !== -1;
2016-03-14 12:50:19 +00:00
}
}