diff --git a/src/app/admin/team-editor/team-editor.component.html b/src/app/admin/team-editor/team-editor.component.html index 0a30e27..e2b057b 100644 --- a/src/app/admin/team-editor/team-editor.component.html +++ b/src/app/admin/team-editor/team-editor.component.html @@ -1,77 +1,10 @@

Team editor

-
-
- - -
-
- - -
+
+ +
-
1st column
-
-
- -
-
- -
-
- -
-
-
2nd column
-
-
- -
-
- -
-
- -
-
-
3rd column
-
-
- -
-
- -
-
- -
-
-
4th column
-
-
- -
-
- -
-
- -
-
-
diff --git a/src/app/shared/kanban-column.ts b/src/app/shared/kanban-column.ts deleted file mode 100644 index 2ff9d1d..0000000 --- a/src/app/shared/kanban-column.ts +++ /dev/null @@ -1,5 +0,0 @@ -export class KanbanColumn { - jiraStatusName = ''; - label = ''; - wipLimit = 0; -} diff --git a/src/app/shared/team.ts b/src/app/shared/team.ts index 72dc8a6..8664a5d 100644 --- a/src/app/shared/team.ts +++ b/src/app/shared/team.ts @@ -1,15 +1,9 @@ import { Member } from './member'; -import { KanbanColumn } from './kanban-column'; export class Team { id: number = null; name: String = ''; members: Array = []; - filterId: number; - backlogColumn: KanbanColumn = new KanbanColumn(); - inprogressColumn: KanbanColumn = new KanbanColumn(); - verificationColumn: KanbanColumn = new KanbanColumn(); - doneColumn: KanbanColumn = new KanbanColumn(); isActive = false; createdAt: String = null; updatedAt: String = null;