2016-05-13 07:18:37 -05:00
|
|
|
import { Component } 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({
|
|
|
|
selector: 'my-app',
|
2016-06-03 15:08:03 -05:00
|
|
|
template: require('./app.component.html'),
|
2016-09-06 15:40:57 -05:00
|
|
|
styles: [ require('./app.component.scss') ]
|
2016-03-14 07:50:19 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
export class AppComponent {
|
2016-08-21 04:27:24 -05:00
|
|
|
constructor(private router: Router) {}
|
2016-05-24 16:00:58 -05:00
|
|
|
|
2016-08-21 04:27:24 -05:00
|
|
|
isInAdmin() {
|
|
|
|
return this.router.url.indexOf('/admin/') !== -1;
|
2016-03-14 07:50:19 -05:00
|
|
|
}
|
|
|
|
}
|