From 8130297e9a73c1fa69b1fc8bd7af13a45ab3bb3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Danyi?= Date: Fri, 27 Apr 2018 18:57:23 +0200 Subject: [PATCH] Revert "* kanban column configuration added to team editor" This reverts commit 10d03ea0c7c69e4bd8d190ecf95ce8a0e07c78b8. --- .../team-editor/team-editor.component.html | 73 +------------------ src/app/shared/kanban-column.ts | 5 -- src/app/shared/team.ts | 6 -- 3 files changed, 3 insertions(+), 81 deletions(-) delete mode 100644 src/app/shared/kanban-column.ts 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;