generated from hpi-swa-teaching/SWT-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
313 additions
and
7 deletions.
There are no files selected for viewing
Empty file.
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/addAssignee.toCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
assignees | ||
addAssignee: anSPBAssignee toCard: anSPBCard | ||
|
||
self subclassResponsibility. |
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBAbstractBoardProvider.class/instance/addLabel.toCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
labels | ||
addLabel: aSPBLabel toCard: aSPBCard | ||
|
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/createCardsFromColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cards | ||
createCardsFromColumn: anSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/createColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
createColumn: aString | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/createNewCard.into..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cards | ||
createNewCard: aDictionary into: anSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/deleteAssignee.fromCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
assignees | ||
deleteAssignee: anSPBAssignee fromCard: anSPBCard | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/deleteLabel.fromCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
labels | ||
deleteLabel: anSPBLabel fromCard: anSPBCard | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/listPossibleAssignees.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
assignees | ||
listPossibleAssignees | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/listPossibleLabels.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
labels | ||
listPossibleLabels | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/moveCard.after.toColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
moveCard: anSPBCard after: anotherSPBCard toColumn: anSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/moveCardToTop.toColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
moveCardToTop: aSPBCard toColumn: aSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/moveColumn.after..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
moveColumn: anSPBColumn after: anotherSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/moveColumnToFront..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
moveColumnToFront: anSPBColumn | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/queryColumns.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
queryColumns | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/renameColumn.to..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
renameColumn: anSPBColumn to: aString | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBAbstractBoardProvider.class/instance/updateCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cards | ||
updateCard: anSPBCard | ||
|
||
self subclassResponsibility. |
20 changes: 20 additions & 0 deletions
20
Squello-Core.package/SPBAbstractBoardProvider.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"addAssignee:toCard:" : "FP 5/23/2024 10:41", | ||
"addLabel:toCard:" : "FP 5/23/2024 10:30", | ||
"createCardsFromColumn:" : "FP 5/23/2024 10:12", | ||
"createColumn:" : "FP 5/23/2024 10:37", | ||
"createNewCard:into:" : "FP 5/23/2024 10:21", | ||
"deleteAssignee:fromCard:" : "FP 5/23/2024 10:41", | ||
"deleteLabel:fromCard:" : "FP 5/23/2024 10:32", | ||
"listPossibleAssignees" : "FP 5/23/2024 10:35", | ||
"listPossibleLabels" : "FP 5/23/2024 10:35", | ||
"moveCard:after:toColumn:" : "FP 5/23/2024 10:35", | ||
"moveCardToTop:toColumn:" : "FP 5/23/2024 10:35", | ||
"moveColumn:after:" : "FP 5/23/2024 10:36", | ||
"moveColumnToFront:" : "FP 5/23/2024 10:35", | ||
"queryColumns" : "FP 5/23/2024 10:35", | ||
"renameColumn:to:" : "FP 5/23/2024 10:35", | ||
"updateCard:" : "FP 5/23/2024 10:39" } } |
14 changes: 14 additions & 0 deletions
14
Squello-Core.package/SPBAbstractBoardProvider.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "Squello-Core", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "SPBAbstractBoardProvider", | ||
"pools" : [ | ||
], | ||
"super" : "Object", | ||
"type" : "normal" } |
7 changes: 7 additions & 0 deletions
7
Squello-Core.package/SPBAssignee.class/class/newWithName.id..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
as yet unclassified | ||
newWithName: aString id: anObject | ||
|
||
^ self new | ||
username: aString; | ||
id: anObject; | ||
yourself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
Squello-Core.package/SPBBoard.class/class/newLocalWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
startup | ||
newLocalWith: aString | ||
|
||
| instance | | ||
instance := self new. | ||
instance makeLocal. | ||
|
||
[instance parseLocalRepoFromUrl: aString] | ||
on: Error do: [self errorParsingUrl. ^ self]. | ||
|
||
instance buildAndOpen. | ||
^ instance. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
initialize-release | ||
localPrefix | ||
|
||
^ 'local.'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
initialize-release | ||
makeLocal | ||
|
||
self boardProvider: SPBLocalBoardProvider new. |
8 changes: 8 additions & 0 deletions
8
Squello-Core.package/SPBBoard.class/instance/parseLocalRepoFromUrl..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
initialize-release | ||
parseLocalRepoFromUrl: aString | ||
|
||
| repoNum | | ||
(aString beginsWith: self localPrefix) ifFalse: [^ self error]. | ||
repoNum := aString allButFirst: self localPrefix size. | ||
|
||
self boardProvider repo: repoNum asInteger. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
Squello-Core.package/SPBCard.class/class/newWithTitle.body.id.into..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
instance creation | ||
newWithTitle: aString body: anotherString id: anObject into: anSPBColumn | ||
|
||
^ self new | ||
id: anObject; | ||
boardProvider: anSPBColumn boardProvider; | ||
changeProvider: anSPBColumn changeProvider; | ||
setupMouseEvents; | ||
title: aString; | ||
description: anotherString; | ||
buildUI; | ||
openInWorld; | ||
yourself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
Squello-Core.package/SPBColumn.class/class/newWithTitle.id..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
instance creation | ||
newWithTitle: aString id: anObject | ||
|
||
^ self new | ||
title: aString; | ||
id: anObject; | ||
yourself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBGithubBoardProvider.class/instance/deleteLabel.fromCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
assignees | ||
labels | ||
deleteLabel: anSPBLabel fromCard: anSPBCard | ||
|
||
self api deleteLabel: anSPBLabel asString fromIssue: anSPBCard issueId user: self user repo: self repo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
Squello-Core.package/SPBLabel.class/class/newWithName.id.color..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
as yet unclassified | ||
newWithName: aString id: anObject color: aColor | ||
|
||
^ self new | ||
title: aString; | ||
id: anObject; | ||
color: aColor; | ||
yourself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/addAssignee.toCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
assignees | ||
addAssignee: anSPBAssignee toCard: anSPBCard | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBLocalBoardProvider.class/instance/addLabel.toCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
labels | ||
addLabel: aSPBLabel toCard: aSPBCard | ||
|
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/createCardsFromColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cards | ||
createCardsFromColumn: aSPBColumn | ||
|
||
self defaultCards. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/createColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
columns | ||
createColumn: aString | ||
|
||
^ SPBColumn newWithTitle: aString id: self nextId. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/createNewCard.into..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cards | ||
createNewCard: aDictionary into: anSPBColumn | ||
|
||
^ SPBCard newWithTitle: (aDictionary at: 'title') body: (aDictionary at: 'body') id: self nextId into: anSPBColumn. |
6 changes: 6 additions & 0 deletions
6
Squello-Core.package/SPBLocalBoardProvider.class/instance/defaultAssignees.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
defaults | ||
defaultAssignees | ||
|
||
^ { SPBAssignee newWithName: 'you' id: 1. | ||
SPBAssignee newWithName: 'your cat' id: 2 | ||
} asOrderedCollection. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/defaultCards.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
defaults | ||
defaultCards | ||
|
||
^ { } asOrderedCollection. |
7 changes: 7 additions & 0 deletions
7
Squello-Core.package/SPBLocalBoardProvider.class/instance/defaultColumns.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
defaults | ||
defaultColumns | ||
|
||
^ { (SPBColumn newWithTitle: 'ToDo' id: 1) boardProvider: self; yourself. | ||
(SPBColumn newWithTitle: 'InProgress' id: 2) boardProvider: self; yourself. | ||
(SPBColumn newWithTitle: 'Done' id: 3) boardProvider: self; yourself. | ||
} asOrderedCollection. |
5 changes: 5 additions & 0 deletions
5
Squello-Core.package/SPBLocalBoardProvider.class/instance/defaultLabels.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
defaults | ||
defaultLabels | ||
|
||
^ { SPBLabel newWithName: 'Bug' id: 1 color: Color red. | ||
SPBLabel newWithName: 'Feature' id: 2 color: Color blue.} asOrderedCollection. |
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBLocalBoardProvider.class/instance/deleteAssignee.fromCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
assignees | ||
deleteAssignee: anSPBAssignee fromCard: anSPBCard | ||
|
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBLocalBoardProvider.class/instance/deleteLabel.fromCard..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
labels | ||
deleteLabel: anSPBLabel fromCard: anSPBCard | ||
|
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/listPossibleAssignees.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
assignees | ||
listPossibleAssignees | ||
|
||
^ self defaultAssignees. |
4 changes: 4 additions & 0 deletions
4
Squello-Core.package/SPBLocalBoardProvider.class/instance/listPossibleLabels.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
labels | ||
listPossibleLabels | ||
|
||
^ self defaultLabels. |
2 changes: 2 additions & 0 deletions
2
Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCard.after.toColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
columns | ||
moveCard: anSPBCard after: anotherSPBCard toColumn: anSPBColumn |
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBLocalBoardProvider.class/instance/moveCardToTop.toColumn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
columns | ||
moveCardToTop: aSPBCard toColumn: aSPBColumn | ||
|
2 changes: 2 additions & 0 deletions
2
Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumn.after..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
columns | ||
moveColumn: anSPBColumn after: anotherSPBColumn |
3 changes: 3 additions & 0 deletions
3
Squello-Core.package/SPBLocalBoardProvider.class/instance/moveColumnToFront..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
columns | ||
moveColumnToFront: anSPBColumn | ||
|
5 changes: 5 additions & 0 deletions
5
Squello-Core.package/SPBLocalBoardProvider.class/instance/nextId.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cards | ||
nextId | ||
|
||
currentId ifNil: [currentId := 10]. | ||
^ currentId := currentId + 1. |
Oops, something went wrong.