1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/frame/frame.component.ts

28 lines
690 B
TypeScript
Raw Normal View History

///<reference path="../../browser.d.ts"/>
2016-05-09 23:04:56 +08:00
import {Component, ViewEncapsulation} from "@angular/core";
2016-05-04 23:20:21 +08:00
import {RouterLink} from "@angular/router-deprecated";
2016-05-17 05:15:03 +08:00
import {AuthenticationService} from "../model/network/authentication.service";
import {User} from "../../../common/entities/User";
2016-05-09 23:04:56 +08:00
@Component({
selector: 'app-frame',
2016-05-09 23:04:56 +08:00
templateUrl: 'app/frame/frame.component.html',
directives: [RouterLink],
encapsulation: ViewEncapsulation.Emulated
})
2016-05-09 23:04:56 +08:00
export class FrameComponent {
2016-05-17 05:15:03 +08:00
user:User;
constructor(private _authService:AuthenticationService) {
this.user = this._authService.getUser();
}
2016-05-01 16:28:05 +08:00
2016-05-17 05:15:03 +08:00
logout() {
this._authService.logout();
}
}