From 1f9b5d7e595bf1aef704d76baa216c1389e2edf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Prei=C3=9Fner?= Date: Fri, 12 Jul 2024 23:06:03 +0200 Subject: [PATCH] removed changeprovider --- .../instance/addColumnLocal..st | 3 +- .../instance/changeProvider..st | 5 -- .../SPBBoard.class/instance/changeProvider.st | 4 -- .../SPBBoard.class/instance/createColumns.st | 4 +- .../SPBBoard.class/instance/initialize.st | 5 +- .../SPBBoard.class/instance/loadProject..st | 4 +- .../instance/setUpChangeProvider.st | 4 -- .../SPBBoard.class/methodProperties.json | 11 ++--- .../SPBBoard.class/properties.json | 1 - .../SPBCard.class/class/newFrom.with..st | 1 - .../SPBCard.class/class/newFromLocal.with..st | 1 - .../class/newWithTitle.body.id.into..st | 1 - .../SPBCard.class/instance/changeProvider..st | 5 -- .../SPBCard.class/instance/changeProvider.st | 4 -- .../SPBCard.class/methodProperties.json | 8 ++-- .../SPBCard.class/properties.json | 1 - .../instance/changeProvider..st | 5 -- .../instance/changeProvider.st | 6 +-- .../SPBColumn.class/methodProperties.json | 3 +- .../SPBColumn.class/properties.json | 1 - .../SPBGithubChangeProvider.class/README.md | 1 - .../instance/api..st | 4 -- .../instance/api.st | 4 -- .../instance/cardAssigned..st | 8 ---- .../instance/cardCreated..st | 10 ---- .../instance/cardDeleted..st | 7 --- .../instance/cardEdited..st | 9 ---- .../instance/cardLabeled..st | 8 ---- .../instance/cardMoved..st | 9 ---- .../instance/cardUnassigned..st | 8 ---- .../instance/cardUnlabeled..st | 8 ---- .../instance/columnCreated..st | 8 ---- .../instance/columnDeleted..st | 7 --- .../instance/columnEdited..st | 8 ---- .../instance/columnMoved..st | 8 ---- .../instance/initialize.st | 5 -- .../instance/manageChanges.st | 3 -- .../instance/parseChange..st | 46 ------------------- .../instance/projectId..st | 4 -- .../instance/projectId.st | 4 -- .../instance/semaphore..st | 4 -- .../instance/semaphore.st | 4 -- .../instance/webhookId.st | 6 --- .../methodProperties.json | 26 ----------- .../properties.json | 16 ------- .../instance/step.st | 5 -- .../instance/stepTime.st | 4 -- .../methodProperties.json | 4 +- .../SPBBoardTests.class/instance/setUp.st | 1 - .../instance/testBuildWith.st | 1 - .../SPBBoardTests.class/methodProperties.json | 4 +- .../SPBColumnTests.class/instance/setUp.st | 1 - .../methodProperties.json | 2 +- .../instance/testCreateCardInto.st | 1 - .../methodProperties.json | 2 +- .../instance/queryColumns.st | 2 - .../methodProperties.json | 2 +- .../instance/testFetchCardIntoColumns.st | 4 +- .../methodProperties.json | 2 +- 59 files changed, 23 insertions(+), 314 deletions(-) delete mode 100644 Squello-Core.package/SPBBoard.class/instance/changeProvider..st delete mode 100644 Squello-Core.package/SPBBoard.class/instance/changeProvider.st delete mode 100644 Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st delete mode 100644 Squello-Core.package/SPBCard.class/instance/changeProvider..st delete mode 100644 Squello-Core.package/SPBCard.class/instance/changeProvider.st delete mode 100644 Squello-Core.package/SPBColumn.class/instance/changeProvider..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/README.md delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/api..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/api.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardAssigned..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardCreated..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardDeleted..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardEdited..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardLabeled..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardMoved..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnassigned..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnlabeled..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/columnCreated..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/columnDeleted..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/columnEdited..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/columnMoved..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/initialize.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/manageChanges.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/parseChange..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore..st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/instance/webhookId.st delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/methodProperties.json delete mode 100644 Squello-Core.package/SPBGithubChangeProvider.class/properties.json delete mode 100644 Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/step.st delete mode 100644 Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/stepTime.st diff --git a/Squello-Core.package/SPBBoard.class/instance/addColumnLocal..st b/Squello-Core.package/SPBBoard.class/instance/addColumnLocal..st index c823ad05..1be9915c 100644 --- a/Squello-Core.package/SPBBoard.class/instance/addColumnLocal..st +++ b/Squello-Core.package/SPBBoard.class/instance/addColumnLocal..st @@ -3,7 +3,6 @@ addColumnLocal: anSPBColumn anSPBColumn board: self; - boardProvider: self boardProvider; - changeProvider: self changeProvider. + boardProvider: self boardProvider. self columns add: anSPBColumn. self updateColumns. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/changeProvider..st b/Squello-Core.package/SPBBoard.class/instance/changeProvider..st deleted file mode 100644 index 4e47e518..00000000 --- a/Squello-Core.package/SPBBoard.class/instance/changeProvider..st +++ /dev/null @@ -1,5 +0,0 @@ -accessing -changeProvider: anSPBChangeProvider - - changeProvider := anSPBChangeProvider. - self changeProvider addDependent: self. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/changeProvider.st b/Squello-Core.package/SPBBoard.class/instance/changeProvider.st deleted file mode 100644 index b967ebed..00000000 --- a/Squello-Core.package/SPBBoard.class/instance/changeProvider.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -changeProvider - - ^ changeProvider. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/createColumns.st b/Squello-Core.package/SPBBoard.class/instance/createColumns.st index 8d1ecbe9..c6536066 100644 --- a/Squello-Core.package/SPBBoard.class/instance/createColumns.st +++ b/Squello-Core.package/SPBBoard.class/instance/createColumns.st @@ -1,6 +1,4 @@ building createColumns - self columns: self boardProvider queryColumns asOrderedCollection. - self columns - do: [:column | column changeProvider: self changeProvider]. \ No newline at end of file + self columns: self boardProvider queryColumns asOrderedCollection. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/initialize.st b/Squello-Core.package/SPBBoard.class/instance/initialize.st index 6642cb0e..9d672406 100644 --- a/Squello-Core.package/SPBBoard.class/instance/initialize.st +++ b/Squello-Core.package/SPBBoard.class/instance/initialize.st @@ -4,7 +4,4 @@ initialize super initialize. self isLocal: false. self - boardProvider: SPBGithubBoardProvider new; - changeProvider: SPBGithubChangeProvider new. - - self changeProvider api: self boardProvider api. \ No newline at end of file + boardProvider: SPBGithubBoardProvider new. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/loadProject..st b/Squello-Core.package/SPBBoard.class/instance/loadProject..st index cff898c0..c2ec9c9d 100644 --- a/Squello-Core.package/SPBBoard.class/instance/loadProject..st +++ b/Squello-Core.package/SPBBoard.class/instance/loadProject..st @@ -3,6 +3,4 @@ loadProject: aString (aString includesSubstring: '/projects') ifTrue: [self parseProjectFromUrl: aString] - ifFalse: [self chooseProjectFromUrl: aString]. - - self setUpChangeProvider. \ No newline at end of file + ifFalse: [self chooseProjectFromUrl: aString]. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st b/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st deleted file mode 100644 index 5d1f802b..00000000 --- a/Squello-Core.package/SPBBoard.class/instance/setUpChangeProvider.st +++ /dev/null @@ -1,4 +0,0 @@ -initialize-release -setUpChangeProvider - - self changeProvider projectId: self boardProvider projectId. \ No newline at end of file diff --git a/Squello-Core.package/SPBBoard.class/methodProperties.json b/Squello-Core.package/SPBBoard.class/methodProperties.json index f208d182..4096360e 100644 --- a/Squello-Core.package/SPBBoard.class/methodProperties.json +++ b/Squello-Core.package/SPBBoard.class/methodProperties.json @@ -14,7 +14,7 @@ "instance" : { "activeCard" : "mcr 8/1/2022 02:31", "addColumn" : "Haru 7/12/2024 20:47", - "addColumnLocal:" : "lo 8/3/2022 12:34", + "addColumnLocal:" : "FP 7/12/2024 22:58", "applyUserInterfaceTheme" : "Haru 7/12/2024 20:47", "asJson" : "FP 7/4/2024 15:46", "boardName" : "Haru 7/12/2024 20:48", @@ -50,24 +50,22 @@ "buildSidebarTitleSpecWith:" : "Haru 7/12/2024 20:03", "buildWith:" : "Haru 7/12/2024 19:56", "changeActiveCardTo:" : "AH 7/8/2024 11:24", - "changeProvider" : "lo 7/8/2022 14:00", - "changeProvider:" : "lo 7/8/2022 15:29", "chooseProjectFrom:" : "Haru 7/12/2024 20:49", "chooseProjectFromUrl:" : "Haru 7/12/2024 20:50", "columnFromId:" : "Haru 7/12/2024 20:50", "columns" : "tk 7/30/2022 21:38", "columns:" : "tk 7/30/2022 21:38", - "createColumns" : "FP 7/12/2024 22:40", + "createColumns" : "FP 7/12/2024 22:58", "createSidebar" : "lo 8/1/2022 11:11", "errorCannotAddColumn:" : "jh 7/31/2022 14:28", "errorInvalidUrl" : "mcr 8/2/2022 22:17", "errorNoProjects" : "mcr 8/2/2022 22:15", "hasModelYellowButtonMenuItems" : "AH 7/12/2024 15:56", "indexOfColumn:" : "lo 8/3/2022 12:57", - "initialize" : "FP 6/10/2024 14:43", + "initialize" : "FP 7/12/2024 23:00", "isLocal" : "Haru 7/12/2024 20:50", "isLocal:" : "FP 6/10/2024 14:43", - "loadProject:" : "FP 7/12/2024 12:38", + "loadProject:" : "FP 7/12/2024 22:59", "makeLocal" : "FP 6/25/2024 14:19", "makeLocal:" : "FP 6/25/2024 14:19", "parseLocalRepoFromUrl:" : "FP 5/27/2024 17:13", @@ -76,7 +74,6 @@ "rerenderColumns" : "lo 7/31/2022 16:42", "resizeColumnArea" : "jh 8/3/2022 01:07", "saveBoard" : "AH 7/12/2024 15:56", - "setUpChangeProvider" : "AH 7/12/2024 15:57", "setupColumns" : "FP 6/17/2024 17:13", "sidebar" : "mcr 8/1/2022 00:44", "sidebar:" : "mcr 8/1/2022 00:44", diff --git a/Squello-Core.package/SPBBoard.class/properties.json b/Squello-Core.package/SPBBoard.class/properties.json index c5ccc6ae..638eac00 100644 --- a/Squello-Core.package/SPBBoard.class/properties.json +++ b/Squello-Core.package/SPBBoard.class/properties.json @@ -7,7 +7,6 @@ "commentStamp" : "tk 8/1/2022 16:13", "instvars" : [ "boardProvider", - "changeProvider", "usedBuilder", "columns", "window", diff --git a/Squello-Core.package/SPBCard.class/class/newFrom.with..st b/Squello-Core.package/SPBCard.class/class/newFrom.with..st index 8219ae14..5a459296 100644 --- a/Squello-Core.package/SPBCard.class/class/newFrom.with..st +++ b/Squello-Core.package/SPBCard.class/class/newFrom.with..st @@ -4,7 +4,6 @@ newFrom: aJsonObject with: anSPBColumn ^ self new cardId: (aJsonObject at: 'id'); boardProvider: anSPBColumn boardProvider; - changeProvider: anSPBColumn changeProvider; setupMouseEvents; buildCard: aJsonObject; buildUI; diff --git a/Squello-Core.package/SPBCard.class/class/newFromLocal.with..st b/Squello-Core.package/SPBCard.class/class/newFromLocal.with..st index cc8f4023..3e5f2e7b 100644 --- a/Squello-Core.package/SPBCard.class/class/newFromLocal.with..st +++ b/Squello-Core.package/SPBCard.class/class/newFromLocal.with..st @@ -4,7 +4,6 @@ newFromLocal: aJsonObject with: anSPBColumn ^ self new cardId: (aJsonObject at: 'id'); boardProvider: anSPBColumn boardProvider; - changeProvider: anSPBColumn changeProvider; setupMouseEvents; buildLocalCard: aJsonObject; buildUI; diff --git a/Squello-Core.package/SPBCard.class/class/newWithTitle.body.id.into..st b/Squello-Core.package/SPBCard.class/class/newWithTitle.body.id.into..st index e67a7485..2886d56b 100644 --- a/Squello-Core.package/SPBCard.class/class/newWithTitle.body.id.into..st +++ b/Squello-Core.package/SPBCard.class/class/newWithTitle.body.id.into..st @@ -4,7 +4,6 @@ newWithTitle: aString body: anotherString id: anObject into: anSPBColumn ^ self new cardId: anObject; boardProvider: anSPBColumn boardProvider; - changeProvider: anSPBColumn changeProvider; setupMouseEvents; title: aString; description: anotherString; diff --git a/Squello-Core.package/SPBCard.class/instance/changeProvider..st b/Squello-Core.package/SPBCard.class/instance/changeProvider..st deleted file mode 100644 index 4bfdd01b..00000000 --- a/Squello-Core.package/SPBCard.class/instance/changeProvider..st +++ /dev/null @@ -1,5 +0,0 @@ -accessing -changeProvider: anSPBGithubChangeProvider - - changeProvider := anSPBGithubChangeProvider. - changeProvider addDependent: self. \ No newline at end of file diff --git a/Squello-Core.package/SPBCard.class/instance/changeProvider.st b/Squello-Core.package/SPBCard.class/instance/changeProvider.st deleted file mode 100644 index b967ebed..00000000 --- a/Squello-Core.package/SPBCard.class/instance/changeProvider.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -changeProvider - - ^ changeProvider. \ No newline at end of file diff --git a/Squello-Core.package/SPBCard.class/methodProperties.json b/Squello-Core.package/SPBCard.class/methodProperties.json index aa104d14..2a6440d7 100644 --- a/Squello-Core.package/SPBCard.class/methodProperties.json +++ b/Squello-Core.package/SPBCard.class/methodProperties.json @@ -7,9 +7,9 @@ "buildNewFromRemote:into:" : "mcr 8/3/2022 14:56", "defaultCardExtent" : "AH 7/12/2024 15:41", "indicatorCardEdgeOffset" : "lo 8/1/2022 12:23", - "newFrom:with:" : "FP 6/19/2024 16:48", - "newFromLocal:with:" : "FP 7/2/2024 11:08", - "newWithTitle:body:id:into:" : "FP 6/19/2024 16:48" }, + "newFrom:with:" : "FP 7/12/2024 22:59", + "newFromLocal:with:" : "FP 7/12/2024 22:59", + "newWithTitle:body:id:into:" : "FP 7/12/2024 22:59" }, "instance" : { "=" : "lo 7/31/2022 18:14", "addAssignee:" : "lo 7/31/2022 16:22", @@ -41,8 +41,6 @@ "cardId" : "FP 6/19/2024 16:52", "cardId:" : "FP 6/19/2024 16:51", "cardIndicatorExtent" : "lo 8/1/2022 11:52", - "changeProvider" : "lo 7/8/2022 15:38", - "changeProvider:" : "jh 7/9/2022 10:18", "column" : "tk 7/30/2022 21:53", "column:" : "tk 7/30/2022 21:53", "currentColumn" : "tk 7/30/2022 21:53", diff --git a/Squello-Core.package/SPBCard.class/properties.json b/Squello-Core.package/SPBCard.class/properties.json index 9bd89509..24d6d490 100644 --- a/Squello-Core.package/SPBCard.class/properties.json +++ b/Squello-Core.package/SPBCard.class/properties.json @@ -11,7 +11,6 @@ "id", "issueId", "boardProvider", - "changeProvider", "assignees", "labels", "column", diff --git a/Squello-Core.package/SPBColumn.class/instance/changeProvider..st b/Squello-Core.package/SPBColumn.class/instance/changeProvider..st deleted file mode 100644 index 4bfdd01b..00000000 --- a/Squello-Core.package/SPBColumn.class/instance/changeProvider..st +++ /dev/null @@ -1,5 +0,0 @@ -accessing -changeProvider: anSPBGithubChangeProvider - - changeProvider := anSPBGithubChangeProvider. - changeProvider addDependent: self. \ No newline at end of file diff --git a/Squello-Core.package/SPBColumn.class/instance/changeProvider.st b/Squello-Core.package/SPBColumn.class/instance/changeProvider.st index b967ebed..d8ecff7b 100644 --- a/Squello-Core.package/SPBColumn.class/instance/changeProvider.st +++ b/Squello-Core.package/SPBColumn.class/instance/changeProvider.st @@ -1,4 +1,2 @@ -accessing -changeProvider - - ^ changeProvider. \ No newline at end of file +card movement +changeProvider \ No newline at end of file diff --git a/Squello-Core.package/SPBColumn.class/methodProperties.json b/Squello-Core.package/SPBColumn.class/methodProperties.json index 3b419c00..f1bc998c 100644 --- a/Squello-Core.package/SPBColumn.class/methodProperties.json +++ b/Squello-Core.package/SPBColumn.class/methodProperties.json @@ -32,8 +32,7 @@ "changeActiveCardTo:" : "NTK 7/30/2022 11:15", "changeColumnRemoteFor:" : "mcr 8/3/2022 23:57", "changeIndexOfColumn:" : "L.L. 7/12/2024 21:20", - "changeProvider" : "lo 7/8/2022 14:29", - "changeProvider:" : "jh 8/3/2022 01:09", + "changeProvider" : "FP 7/12/2024 23:00", "changeRemoteIndexOfColumn:" : "tk 7/30/2022 22:01", "defaultMinimumHeight" : "LW 7/14/2022 11:13", "defaultTopCardPosition" : "mcr 8/3/2022 23:46", diff --git a/Squello-Core.package/SPBColumn.class/properties.json b/Squello-Core.package/SPBColumn.class/properties.json index c729edbc..83087ab1 100644 --- a/Squello-Core.package/SPBColumn.class/properties.json +++ b/Squello-Core.package/SPBColumn.class/properties.json @@ -14,7 +14,6 @@ "board", "jsonCards", "minimumHeight", - "changeProvider", "indicator", "bottomDetection", "cardPositions" ], diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/README.md b/Squello-Core.package/SPBGithubChangeProvider.class/README.md deleted file mode 100644 index c9be5df0..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/README.md +++ /dev/null @@ -1 +0,0 @@ -SPBGithubChangeProvider is responsible for managing the changes from Github to Squello Board \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/api..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/api..st deleted file mode 100644 index 50b8a35d..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/api..st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -api: anSPBGithubAPI - - api := anSPBGithubAPI. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/api.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/api.st deleted file mode 100644 index 4ef7e9b6..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/api.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -api - - ^ api. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardAssigned..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardAssigned..st deleted file mode 100644 index dbea607e..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardAssigned..st +++ /dev/null @@ -1,8 +0,0 @@ -card changes -cardAssigned: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #assign. - 'id' -> ((aJsonObject at: 'issue') at: 'number'). - 'assignee' -> (aJsonObject at: 'assignee') - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardCreated..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardCreated..st deleted file mode 100644 index 5cb3adc9..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardCreated..st +++ /dev/null @@ -1,10 +0,0 @@ -card changes -cardCreated: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #create. - 'card' -> ((aJsonObject at: 'project_card') at: 'id'). - 'id' -> ((aJsonObject at: 'project_card') at: 'column_id'). - 'content' -> ((aJsonObject at: 'project_card') at: 'content_url'). - 'after' -> ((aJsonObject at: 'project_card') at: 'after_id'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardDeleted..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardDeleted..st deleted file mode 100644 index 9f8061ce..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardDeleted..st +++ /dev/null @@ -1,7 +0,0 @@ -card changes -cardDeleted: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #delete. - 'id' -> ((aJsonObject at: 'project_card') at: 'id'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardEdited..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardEdited..st deleted file mode 100644 index fc41ad3a..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardEdited..st +++ /dev/null @@ -1,9 +0,0 @@ -card changes -cardEdited: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #edit. - 'id' -> ((aJsonObject at: 'issue') at: 'number'). - 'title' -> ((aJsonObject at: 'issue') at: 'title'). - 'body' -> ((aJsonObject at: 'issue') at: 'body'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardLabeled..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardLabeled..st deleted file mode 100644 index 5a4ec33c..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardLabeled..st +++ /dev/null @@ -1,8 +0,0 @@ -card changes -cardLabeled: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #label. - 'id' -> ((aJsonObject at: 'issue') at: 'number'). - 'label' -> (aJsonObject at: 'label'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardMoved..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardMoved..st deleted file mode 100644 index 81e40cc7..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardMoved..st +++ /dev/null @@ -1,9 +0,0 @@ -card changes -cardMoved: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #move. - 'id' -> ((aJsonObject at: 'project_card') at: 'id'). - 'columnId' -> ((aJsonObject at: 'project_card') at: 'column_id'). - 'after' -> ((aJsonObject at: 'project_card') at: 'after_id'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnassigned..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnassigned..st deleted file mode 100644 index 564ee6c8..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnassigned..st +++ /dev/null @@ -1,8 +0,0 @@ -card changes -cardUnassigned: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #unassign. - 'id' -> ((aJsonObject at: 'issue') at: 'number'). - 'assignee' -> (aJsonObject at: 'assignee'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnlabeled..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnlabeled..st deleted file mode 100644 index 4a492b0b..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/cardUnlabeled..st +++ /dev/null @@ -1,8 +0,0 @@ -card changes -cardUnlabeled: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #unlabel. - 'id' -> ((aJsonObject at: 'issue') at: 'number'). - 'label' -> (aJsonObject at: 'label'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnCreated..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnCreated..st deleted file mode 100644 index 6e8d4cca..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnCreated..st +++ /dev/null @@ -1,8 +0,0 @@ -column changes -columnCreated: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #create. - 'id' -> ((aJsonObject at: 'project_column') at: 'id'). - 'name' -> ((aJsonObject at: 'project_column') at: 'name') - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnDeleted..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnDeleted..st deleted file mode 100644 index 58ac6c11..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnDeleted..st +++ /dev/null @@ -1,7 +0,0 @@ -column changes -columnDeleted: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #delete. - 'id' -> ((aJsonObject at: 'project_column') at: 'id'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnEdited..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnEdited..st deleted file mode 100644 index 4afd9331..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnEdited..st +++ /dev/null @@ -1,8 +0,0 @@ -column changes -columnEdited: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #edit. - 'id' -> ((aJsonObject at: 'project_column') at: 'id'). - 'title' -> ((aJsonObject at: 'project_column') at: 'name'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnMoved..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnMoved..st deleted file mode 100644 index bc2ef3b9..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/columnMoved..st +++ /dev/null @@ -1,8 +0,0 @@ -column changes -columnMoved: aJsonObject - - ^ Dictionary newFrom: { - 'action' -> #move. - 'id' -> ((aJsonObject at: 'project_column') at: 'id'). - 'after' -> ((aJsonObject at: 'project_column') at: 'after_id'). - }. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/initialize.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/initialize.st deleted file mode 100644 index 6b4f8ee1..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/initialize.st +++ /dev/null @@ -1,5 +0,0 @@ -initialize-release -initialize - - super initialize. - self semaphore: Semaphore new. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/manageChanges.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/manageChanges.st deleted file mode 100644 index 66dfffae..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/manageChanges.st +++ /dev/null @@ -1,3 +0,0 @@ -general changes -manageChanges - "do nothing" \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/parseChange..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/parseChange..st deleted file mode 100644 index 36feeca7..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/parseChange..st +++ /dev/null @@ -1,46 +0,0 @@ -general changes -parseChange: aJsonObject - - | action change type | - - action := aJsonObject at: 'action'. - - (aJsonObject includesKey: 'project_card') - ifTrue: [type := #card. - action = 'moved' - ifTrue: [change := self cardMoved: aJsonObject]. - action = 'created' - ifTrue: [type := #column. change := self cardCreated: aJsonObject]. - action = 'deleted' - ifTrue: [change := self cardDeleted: aJsonObject]]. - - (aJsonObject includesKey: 'project_column') - ifTrue: [type := #column. - action = 'moved' - ifTrue: [change := self columnMoved: aJsonObject]. - action = 'created' - ifTrue: [type := #board. change := self columnCreated: aJsonObject]. - action = 'deleted' - ifTrue: [change := self columnDeleted: aJsonObject]. - action = 'edited' - ifTrue: [change := self columnEdited: aJsonObject]]. - - (aJsonObject includesKey: 'issue') - ifTrue: [type := #card. - action = 'labeled' - ifTrue: [change := self cardLabeled: aJsonObject]. - action = 'unlabeled' - ifTrue: [change := self cardUnlabeled: aJsonObject]. - action = 'assigned' - ifTrue: [change := self cardAssigned: aJsonObject]. - action = 'unassigned' - ifTrue: [change := self cardUnassigned: aJsonObject]. - action = 'edited' - ifTrue: [change := self cardEdited: aJsonObject]]. - - action = 'opened' - ifTrue: [^ self.]. - change - ifNil: [^ self.]. - - self changed: type with: change. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId..st deleted file mode 100644 index 47b9cd14..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId..st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -projectId: aNumber - - projectId := aNumber. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId.st deleted file mode 100644 index e7d7ccef..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/projectId.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -projectId - - ^ projectId. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore..st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore..st deleted file mode 100644 index dcbd8a2b..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore..st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -semaphore: aSemaphore - - semaphore := aSemaphore. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore.st deleted file mode 100644 index 64f4985c..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/semaphore.st +++ /dev/null @@ -1,4 +0,0 @@ -accessing -semaphore - - ^ semaphore. \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/instance/webhookId.st b/Squello-Core.package/SPBGithubChangeProvider.class/instance/webhookId.st deleted file mode 100644 index b9112cc4..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/instance/webhookId.st +++ /dev/null @@ -1,6 +0,0 @@ -accessing -webhookId - - | projectId | - projectId := self projectId asString. - ^ (projectId , '/' , SPBGithubAPI username). \ No newline at end of file diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/methodProperties.json b/Squello-Core.package/SPBGithubChangeProvider.class/methodProperties.json deleted file mode 100644 index bb896d35..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/methodProperties.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "class" : { - }, - "instance" : { - "api" : "lo 7/8/2022 11:43", - "api:" : "NTK 7/31/2022 11:55", - "cardAssigned:" : "lo 7/13/2022 20:38", - "cardCreated:" : "lo 7/13/2022 20:39", - "cardDeleted:" : "lo 7/13/2022 20:39", - "cardEdited:" : "lo 7/13/2022 20:39", - "cardLabeled:" : "lo 7/13/2022 20:39", - "cardMoved:" : "tk 7/30/2022 22:23", - "cardUnassigned:" : "lo 7/13/2022 20:39", - "cardUnlabeled:" : "lo 7/13/2022 20:39", - "columnCreated:" : "tk 7/30/2022 22:01", - "columnDeleted:" : "tk 7/30/2022 22:02", - "columnEdited:" : "tk 7/30/2022 22:02", - "columnMoved:" : "tk 7/30/2022 22:02", - "initialize" : "jh 7/10/2022 13:36", - "manageChanges" : "Haru 7/12/2024 20:32", - "parseChange:" : "L.L. 7/12/2024 21:16", - "projectId" : "lo 7/8/2022 13:46", - "projectId:" : "lo 7/8/2022 13:46", - "semaphore" : "LW 7/14/2022 11:08", - "semaphore:" : "LW 7/14/2022 11:08", - "webhookId" : "NTK 7/30/2022 11:52" } } diff --git a/Squello-Core.package/SPBGithubChangeProvider.class/properties.json b/Squello-Core.package/SPBGithubChangeProvider.class/properties.json deleted file mode 100644 index cec9d50f..00000000 --- a/Squello-Core.package/SPBGithubChangeProvider.class/properties.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "category" : "Squello-Core", - "classinstvars" : [ - ], - "classvars" : [ - ], - "commentStamp" : "tk 8/1/2022 16:18", - "instvars" : [ - "api", - "projectId", - "semaphore" ], - "name" : "SPBGithubChangeProvider", - "pools" : [ - ], - "super" : "Object", - "type" : "normal" } diff --git a/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/step.st b/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/step.st deleted file mode 100644 index df7a0e3c..00000000 --- a/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/step.st +++ /dev/null @@ -1,5 +0,0 @@ -stepping and presenter -step - - super step. - self model changeProvider manageChanges. \ No newline at end of file diff --git a/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/stepTime.st b/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/stepTime.st deleted file mode 100644 index a08b080f..00000000 --- a/Squello-Core.package/SPBPluggableResizeScrollPane.class/instance/stepTime.st +++ /dev/null @@ -1,4 +0,0 @@ -stepping and presenter -stepTime - - ^ 5000. \ No newline at end of file diff --git a/Squello-Core.package/SPBPluggableResizeScrollPane.class/methodProperties.json b/Squello-Core.package/SPBPluggableResizeScrollPane.class/methodProperties.json index 771cb477..f8ac4b29 100644 --- a/Squello-Core.package/SPBPluggableResizeScrollPane.class/methodProperties.json +++ b/Squello-Core.package/SPBPluggableResizeScrollPane.class/methodProperties.json @@ -2,6 +2,4 @@ "class" : { }, "instance" : { - "extent:" : "tk 7/30/2022 21:50", - "step" : "lo 7/8/2022 14:00", - "stepTime" : "jh 6/26/2022 13:32" } } + "extent:" : "tk 7/30/2022 21:50" } } diff --git a/Squello-Tests.package/SPBBoardTests.class/instance/setUp.st b/Squello-Tests.package/SPBBoardTests.class/instance/setUp.st index 377c96cf..60eacee6 100644 --- a/Squello-Tests.package/SPBBoardTests.class/instance/setUp.st +++ b/Squello-Tests.package/SPBBoardTests.class/instance/setUp.st @@ -4,6 +4,5 @@ setUp provider := SPBMockGithubBoardProvider new. board := SPBBoard new. board boardProvider: SPBMockGithubBoardProvider new. - board changeProvider: SPBGithubChangeProvider new. board usedBuilder: SPBMorphicToolBuilder new. board sidebar: (SPBSidebar new boardProvider: board boardProvider). diff --git a/Squello-Tests.package/SPBBoardTests.class/instance/testBuildWith.st b/Squello-Tests.package/SPBBoardTests.class/instance/testBuildWith.st index bf565815..5c950971 100644 --- a/Squello-Tests.package/SPBBoardTests.class/instance/testBuildWith.st +++ b/Squello-Tests.package/SPBBoardTests.class/instance/testBuildWith.st @@ -5,7 +5,6 @@ testBuildWith builder := SPBMorphicToolBuilder new. column1 := SPBColumn new boardProvider: board boardProvider; - changeProvider: board changeProvider; id: 1337. board columns: {column1}. diff --git a/Squello-Tests.package/SPBBoardTests.class/methodProperties.json b/Squello-Tests.package/SPBBoardTests.class/methodProperties.json index f83f8942..5db893ce 100644 --- a/Squello-Tests.package/SPBBoardTests.class/methodProperties.json +++ b/Squello-Tests.package/SPBBoardTests.class/methodProperties.json @@ -5,7 +5,7 @@ "calledSymbols" : "lo 6/18/2022 12:12", "calledSymbols:" : "lo 6/18/2022 12:07", "isColumn:" : "tk 7/30/2022 23:09", - "setUp" : "mcr 8/1/2022 01:57", + "setUp" : "FP 7/12/2024 22:57", "tearDown" : "NTK 5/30/2022 15:16", "testBuildAddColumnButtonPanelSpecWith" : "mcr 8/1/2022 02:18", "testBuildAddColumnButtonSpecWith" : "mcr 8/1/2022 02:18", @@ -26,7 +26,7 @@ "testBuildSidebarSpecWith" : "mcr 8/1/2022 01:53", "testBuildSidebarTitleSpecWith" : "mcr 8/1/2022 01:53", "testBuildSidebarWith" : "mcr 6/18/2022 13:34", - "testBuildWith" : "mcr 8/1/2022 01:57", + "testBuildWith" : "FP 7/12/2024 22:59", "testChangeActiveCardTo" : "mcr 8/1/2022 01:58", "testCreateColumns" : "mcr 8/1/2022 02:15", "testLastProject" : "jh 6/21/2022 11:12", diff --git a/Squello-Tests.package/SPBColumnTests.class/instance/setUp.st b/Squello-Tests.package/SPBColumnTests.class/instance/setUp.st index cf10a3ee..fc74e28c 100644 --- a/Squello-Tests.package/SPBColumnTests.class/instance/setUp.st +++ b/Squello-Tests.package/SPBColumnTests.class/instance/setUp.st @@ -4,6 +4,5 @@ setUp column := SPBColumn new. column addDependent: self. column boardProvider: SPBMockGithubBoardProvider new. - column changeProvider: SPBGithubChangeProvider new. column pasteup: (SPBPluggablePasteUpMorph new position: 100@200). observed := OrderedCollection new. \ No newline at end of file diff --git a/Squello-Tests.package/SPBColumnTests.class/methodProperties.json b/Squello-Tests.package/SPBColumnTests.class/methodProperties.json index 01c38e69..47101991 100644 --- a/Squello-Tests.package/SPBColumnTests.class/methodProperties.json +++ b/Squello-Tests.package/SPBColumnTests.class/methodProperties.json @@ -2,7 +2,7 @@ "class" : { }, "instance" : { - "setUp" : "tk 7/30/2022 23:35", + "setUp" : "FP 7/12/2024 22:57", "tearDown" : "tk 7/30/2022 23:34", "testActiveCard" : "mcr 8/1/2022 02:41", "testAddToNewColumnAsFirst" : "mcr 8/1/2022 02:09", diff --git a/Squello-Tests.package/SPBGithubBoardProviderTests.class/instance/testCreateCardInto.st b/Squello-Tests.package/SPBGithubBoardProviderTests.class/instance/testCreateCardInto.st index 914c6c26..ddde02a3 100644 --- a/Squello-Tests.package/SPBGithubBoardProviderTests.class/instance/testCreateCardInto.st +++ b/Squello-Tests.package/SPBGithubBoardProviderTests.class/instance/testCreateCardInto.st @@ -4,7 +4,6 @@ testCreateCardInto | cardDictionary column card | cardDictionary := Dictionary newFrom: {'title'->'Found a bug'}. column := SPBColumn new - changeProvider: SPBGithubChangeProvider new; boardProvider: SPBMockGithubBoardProvider new. card := provider createNewCard: cardDictionary into: column. diff --git a/Squello-Tests.package/SPBGithubBoardProviderTests.class/methodProperties.json b/Squello-Tests.package/SPBGithubBoardProviderTests.class/methodProperties.json index 1637d47d..42818da8 100644 --- a/Squello-Tests.package/SPBGithubBoardProviderTests.class/methodProperties.json +++ b/Squello-Tests.package/SPBGithubBoardProviderTests.class/methodProperties.json @@ -7,7 +7,7 @@ "testAddAssigneeToCard" : "lo 7/13/2022 20:41", "testAddLabelToCard" : "lo 7/13/2022 20:42", "testApi" : "mcr 5/31/2022 19:01", - "testCreateCardInto" : "mcr 8/3/2022 15:53", + "testCreateCardInto" : "FP 7/12/2024 22:57", "testDeleteAssigneeFromCard" : "lo 7/13/2022 20:42", "testGetProjects" : "NTK 6/17/2022 12:46", "testMoveCardAfter" : "tk 7/30/2022 23:26", diff --git a/Squello-Tests.package/SPBMockGithubBoardProvider.class/instance/queryColumns.st b/Squello-Tests.package/SPBMockGithubBoardProvider.class/instance/queryColumns.st index 4dba7fee..554fe797 100644 --- a/Squello-Tests.package/SPBMockGithubBoardProvider.class/instance/queryColumns.st +++ b/Squello-Tests.package/SPBMockGithubBoardProvider.class/instance/queryColumns.st @@ -4,14 +4,12 @@ queryColumns | column1 column2 | column1 := SPBColumn new boardProvider: self; - changeProvider: SPBGithubChangeProvider new; id: 1234; title: 'Hi squeak!'; pasteup: SPBPluggablePasteUpMorph new; yourself. column2 := SPBColumn new boardProvider: self; - changeProvider: SPBGithubChangeProvider new; id: 5678; title: 'Hi smalltalk'; pasteup: SPBPluggablePasteUpMorph new; diff --git a/Squello-Tests.package/SPBMockGithubBoardProvider.class/methodProperties.json b/Squello-Tests.package/SPBMockGithubBoardProvider.class/methodProperties.json index a0c68b56..6a7fab81 100644 --- a/Squello-Tests.package/SPBMockGithubBoardProvider.class/methodProperties.json +++ b/Squello-Tests.package/SPBMockGithubBoardProvider.class/methodProperties.json @@ -22,6 +22,6 @@ "moveColumn:after:" : "tk 7/30/2022 22:00", "queryBoardName" : "FP 6/11/2024 11:04", "queryCardContent:" : "FP 5/11/2024 14:57", - "queryColumns" : "tk 7/30/2022 23:31", + "queryColumns" : "FP 7/12/2024 22:58", "renameColumn:to:" : "FP 5/11/2024 15:01", "updateCard:" : "lo 5/22/2022 15:47" } } diff --git a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testFetchCardIntoColumns.st b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testFetchCardIntoColumns.st index 7b615601..acccd298 100644 --- a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testFetchCardIntoColumns.st +++ b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/instance/testFetchCardIntoColumns.st @@ -2,8 +2,8 @@ tests-cards testFetchCardIntoColumns | column1 column2 | - column1 := SPBColumn new id: '60'; changeProvider: SPBGithubChangeProvider new. - column2 := SPBColumn new id: '61'; changeProvider: SPBGithubChangeProvider new. + column1 := SPBColumn new id: '60'. + column2 := SPBColumn new id: '61'. provider fetchCardsIntoColumns: {column1. column2} asOrderedCollection. self assert: column1 cards size equals: 2. self assert: column2 cards size equals: 1. diff --git a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json index 5b228eb9..0855d75b 100644 --- a/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json +++ b/Squello-Tests.package/SPBNewGithubBoardProviderTests.class/methodProperties.json @@ -12,7 +12,7 @@ "testCreateCardsFromColumn" : "FP 7/11/2024 12:06", "testCreateColumn" : "FP 7/11/2024 12:51", "testCreateNewCardInto" : "FP 7/11/2024 13:19", - "testFetchCardIntoColumns" : "FP 7/11/2024 12:27", + "testFetchCardIntoColumns" : "FP 7/12/2024 23:00", "testListPossibleAssignees" : "FP 7/9/2024 11:32", "testListPossibleLabels" : "FP 7/9/2024 11:37", "testMoveCard" : "FP 7/11/2024 12:43",