21 lines
571 B
TypeScript
Raw Normal View History

2019-09-19 14:15:43 +09:00
import { Component, OnInit } from '@angular/core';
import { AuthenticationProtocolService } from '@ucap-webmessenger/protocol-authentication';
2019-09-18 15:02:21 +09:00
@Component({
selector: 'app-page-messenger-main',
templateUrl: './main.page.component.html',
styleUrls: ['./main.page.component.scss']
})
2019-09-19 14:15:43 +09:00
export class MainPageComponent implements OnInit {
selectedChat: boolean;
2019-09-19 14:15:43 +09:00
constructor(
private authenticationProtocolService: AuthenticationProtocolService
) {}
ngOnInit(): void {
// this.authenticationProtocolService.login({});
this.selectedChat = true;
2019-09-19 14:15:43 +09:00
}
2019-09-18 15:02:21 +09:00
}