├── ui
├── src
│ ├── assets
│ │ └── .gitkeep
│ ├── app
│ │ ├── app.component.css
│ │ ├── app.component.html
│ │ ├── dashboard
│ │ │ ├── dashboard.component.css
│ │ │ ├── tasks
│ │ │ │ ├── tasks.component.css
│ │ │ │ ├── tasks.component.spec.ts
│ │ │ │ ├── tasks.component.ts
│ │ │ │ └── tasks.component.html
│ │ │ ├── dashboard-routing.module.ts
│ │ │ ├── dashboard.module.ts
│ │ │ ├── dashboard.component.spec.ts
│ │ │ ├── dashboard.component.html
│ │ │ └── dashboard.component.ts
│ │ ├── footer
│ │ │ ├── footer.component.html
│ │ │ ├── footer.component.css
│ │ │ ├── footer.component.ts
│ │ │ └── footer.component.spec.ts
│ │ ├── header
│ │ │ ├── header.component.html
│ │ │ ├── header.component.css
│ │ │ ├── header.component.ts
│ │ │ └── header.component.spec.ts
│ │ ├── app-state
│ │ │ ├── entity
│ │ │ │ ├── index.ts
│ │ │ │ ├── user.entity.ts
│ │ │ │ └── task.entity.ts
│ │ │ ├── effects
│ │ │ │ ├── index.ts
│ │ │ │ ├── user.effects.ts
│ │ │ │ └── todo.effects.ts
│ │ │ ├── actions
│ │ │ │ ├── index.ts
│ │ │ │ ├── login.actions.ts
│ │ │ │ ├── signup.actions.ts
│ │ │ │ └── todo.actions.ts
│ │ │ ├── state
│ │ │ │ └── storage.ts
│ │ │ ├── reducers
│ │ │ │ ├── user.reducer.ts
│ │ │ │ └── todo.reducer.ts
│ │ │ └── index.ts
│ │ ├── _services
│ │ │ ├── index.ts
│ │ │ ├── app.service.spec.ts
│ │ │ ├── todo.service.spec.ts
│ │ │ ├── todo.service.ts
│ │ │ └── app.service.ts
│ │ ├── shared
│ │ │ ├── leftnav
│ │ │ │ ├── leftnav.component.html
│ │ │ │ ├── leftnav.component.css
│ │ │ │ ├── leftnav.component.ts
│ │ │ │ └── leftnav.component.spec.ts
│ │ │ ├── header
│ │ │ │ ├── header.component.css
│ │ │ │ ├── header.component.html
│ │ │ │ ├── header.component.spec.ts
│ │ │ │ └── header.component.ts
│ │ │ └── shared.module.ts
│ │ ├── app.component.ts
│ │ ├── login
│ │ │ ├── signup.component.css
│ │ │ ├── login.component.css
│ │ │ ├── login-routing.module.ts
│ │ │ ├── login.component.spec.ts
│ │ │ ├── signup.component.spec.ts
│ │ │ ├── login.module.ts
│ │ │ ├── login.component.html
│ │ │ ├── login.component.ts
│ │ │ ├── signup.component.ts
│ │ │ └── signup.component.html
│ │ ├── app-routing.module.ts
│ │ ├── app.component.spec.ts
│ │ └── app.module.ts
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── favicon.ico
│ ├── styles.css
│ ├── index.html
│ ├── main.ts
│ ├── test.ts
│ └── polyfills.ts
├── proxy.conf.json
├── e2e
│ ├── tsconfig.json
│ ├── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
│ └── protractor.conf.js
├── tsconfig.app.json
├── .editorconfig
├── tsconfig.spec.json
├── browserslist
├── tsconfig.json
├── .gitignore
├── README.md
├── karma.conf.js
├── package.json
├── tslint.json
└── angular.json
├── api
├── package.json
└── server.js
└── README.md
/ui/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ui/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ui/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
| Task Id | 7 |Task Name | 8 |Assignee | 9 |Status | 10 |
|---|---|---|---|
| 15 | {{task.id}} 16 | | 17 |18 | {{task.task}} 19 | | 20 |21 | {{task.assignee}} 22 | | 23 |
24 |
25 |
35 |
26 | {{task.status}}
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | |
36 |