aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/home/home.component.ts
diff options
context:
space:
mode:
author杨宇千 <crupest@outlook.com>2019-02-21 16:32:16 +0000
committer杨宇千 <crupest@outlook.com>2019-02-21 16:32:16 +0000
commit5452ada657b7a3a4b2a91563a5ff03dcb798c684 (patch)
tree0f90f9a078e1db147a65b96a3c28a8ea2fe15c9e /Timeline/ClientApp/src/app/home/home.component.ts
parent86a1d2977ac15adc863f087b0e84890f460dc748 (diff)
parent57f88746769432ed2d529a4f050783d84f9fb2bc (diff)
downloadtimeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.gz
timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.tar.bz2
timeline-5452ada657b7a3a4b2a91563a5ff03dcb798c684.zip
Merged PR 3: Add unit test for front side.
Related work items: #1
Diffstat (limited to 'Timeline/ClientApp/src/app/home/home.component.ts')
-rw-r--r--Timeline/ClientApp/src/app/home/home.component.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/Timeline/ClientApp/src/app/home/home.component.ts b/Timeline/ClientApp/src/app/home/home.component.ts
index 873aee7f..2b16eef7 100644
--- a/Timeline/ClientApp/src/app/home/home.component.ts
+++ b/Timeline/ClientApp/src/app/home/home.component.ts
@@ -1,10 +1,4 @@
import { Component, OnInit } from '@angular/core';
-import { HttpClient } from '@angular/common/http';
-
-class LoginInfo {
- username = '';
- password = '';
-}
@Component({
selector: 'app-home',
@@ -13,15 +7,8 @@ class LoginInfo {
})
export class HomeComponent implements OnInit {
- loginInfo = new LoginInfo();
message = '';
- constructor(/* private http: HttpClient */) { }
-
ngOnInit() {
}
-
- tryLogin() {
- alert('Not implemented!!!');
- }
}