diff --git a/Squello-Core.package/SPBAssignee.class/instance/hash.st b/Squello-Core.package/SPBAssignee.class/instance/hash.st index a1dce48e..c2ceaf45 100644 --- a/Squello-Core.package/SPBAssignee.class/instance/hash.st +++ b/Squello-Core.package/SPBAssignee.class/instance/hash.st @@ -1,5 +1,5 @@ comparing hash - "Answer an integer value that is related to the identity of the receiver." + ^ self id hash. \ No newline at end of file diff --git a/Squello-Core.package/SPBAssignee.class/methodProperties.json b/Squello-Core.package/SPBAssignee.class/methodProperties.json index 93b007ad..f53f7074 100644 --- a/Squello-Core.package/SPBAssignee.class/methodProperties.json +++ b/Squello-Core.package/SPBAssignee.class/methodProperties.json @@ -6,7 +6,7 @@ "=" : "LW 7/14/2022 12:24", "asJson" : "FP 6/25/2024 11:13", "asString" : "lo 5/28/2022 12:17", - "hash" : "LW 7/14/2022 11:23", + "hash" : "AH 7/12/2024 15:44", "id" : "lo 5/16/2022 22:43", "id:" : "tk 8/2/2022 23:42", "isAssignee" : "lo 8/1/2022 14:48", diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st index 336303cd..bae65669 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/actionSubmit.st @@ -3,7 +3,8 @@ actionSubmit | oldUsername areCredentialsNil | areCredentialsNil := (self username isNil or: [self token isNil]). - areCredentialsNil ifTrue: [^ self errorEmptyField]. + areCredentialsNil + ifTrue: [^ self errorEmptyField]. SPBAuthenticator token: self token. oldUsername := SPBAuthenticator username. diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st index 1ab7908b..d03c72d3 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/buildWith..st @@ -2,11 +2,11 @@ toolbuilder buildWith: aBuilder ^ aBuilder build: (aBuilder pluggableDialogSpec new - model: self; - label: #labelString; - extent: 600@60; - exclusive: false; - message: 'Insert GitHub authentication data:'; - children: {self buildInputPanel: aBuilder}; - buttons: (self buildButtons: aBuilder); - yourself). \ No newline at end of file + model: self; + label: #labelString; + extent: 600 @ 60; + exclusive: false; + message: 'Insert GitHub authentication data:'; + children: {self buildInputPanel: aBuilder}; + buttons: (self buildButtons: aBuilder); + yourself). \ No newline at end of file diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st index 1506a3d7..535fefaa 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/token.st @@ -1,4 +1,5 @@ accessing token - ^ token ifNil: [token := SPBAuthenticator token]. \ No newline at end of file + ^ token + ifNil: [token := SPBAuthenticator token]. \ No newline at end of file diff --git a/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st b/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st index 9120bbb1..049a0c81 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st +++ b/Squello-Core.package/SPBAuthenticationForm.class/instance/username.st @@ -1,4 +1,5 @@ accessing username - ^ username ifNil: [username := SPBAuthenticator username]. \ No newline at end of file + ^ username + ifNil: [username := SPBAuthenticator username]. \ No newline at end of file diff --git a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json index 963c15a2..75aaa6e1 100644 --- a/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json +++ b/Squello-Core.package/SPBAuthenticationForm.class/methodProperties.json @@ -3,20 +3,20 @@ "open" : "jh 7/31/2022 13:05" }, "instance" : { "actionCancel" : "mcr 7/4/2022 00:36", - "actionSubmit" : "FP 7/12/2024 12:58", + "actionSubmit" : "AH 7/12/2024 15:44", "buildButtons:" : "FP 6/13/2024 11:10", "buildInputFields:" : "mcr 8/4/2022 00:18", "buildInputPanel:" : "tk 8/2/2022 23:42", - "buildWith:" : "tk 8/2/2022 23:43", + "buildWith:" : "AH 7/12/2024 15:45", "checkUserValid" : "lo 7/13/2022 19:16", "close" : "lo 8/1/2022 14:16", "errorEmptyField" : "mcr 8/4/2022 00:36", "errorUserNotFound" : "mcr 8/4/2022 00:36", "labelString" : "lo 7/13/2022 19:29", "resetCredentials" : "FP 7/12/2024 12:58", - "token" : "FP 7/12/2024 13:04", + "token" : "AH 7/12/2024 15:45", "token:" : "lo 7/13/2022 19:26", "updateToken:" : "mcr 8/4/2022 00:18", "updateUsername:" : "mcr 8/4/2022 00:18", - "username" : "FP 7/12/2024 12:57", + "username" : "AH 7/12/2024 15:45", "username:" : "lo 7/13/2022 19:27" } } diff --git a/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st b/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st index 7a6b6d12..8ab809d1 100644 --- a/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st +++ b/Squello-Core.package/SPBAuthenticator.class/instance/authenticate.st @@ -4,8 +4,4 @@ authenticate self checkIfCredentialsMissing ifTrue: [SPBAuthenticationForm open]. self checkIfCredentialsMissing - ifTrue: [self errorAuthenticationCanceled. Error signal]. - - "this is now handled by the boardProvider" - "[self checkIfTokenValid] - on: Error do: [Error signal]." \ No newline at end of file + ifTrue: [self errorAuthenticationCanceled. Error signal]. \ No newline at end of file diff --git a/Squello-Core.package/SPBAuthenticator.class/methodProperties.json b/Squello-Core.package/SPBAuthenticator.class/methodProperties.json index e89c9d18..ddb4f291 100644 --- a/Squello-Core.package/SPBAuthenticator.class/methodProperties.json +++ b/Squello-Core.package/SPBAuthenticator.class/methodProperties.json @@ -6,7 +6,7 @@ "username" : "FP 7/12/2024 12:50", "username:" : "FP 7/12/2024 12:50" }, "instance" : { - "authenticate" : "FP 7/12/2024 12:55", + "authenticate" : "AH 7/12/2024 15:46", "boardProvider" : "mcr 8/2/2022 18:26", "boardProvider:" : "mcr 8/2/2022 18:26", "checkIfCredentialsMissing" : "FP 7/12/2024 12:56",