Compare commits

...
Author SHA1 Message Date
phoenix 105c9f2456 tsk-24: Version bump 2025-12-30 18:46:14 -05:00
phoenix 13aef7798a tsk-24: Code formatting 2025-12-30 18:45:05 -05:00
phoenix 7cc10fd264 tsk-24: Added IssuedAt to token.LoginResult 2025-12-30 18:43:25 -05:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.13"
VERSION="0.0.14"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+1
View File
@@ -16,6 +16,7 @@ type LoginResult struct {
AccessToken string `json:"access_token"`
TokenType string `json:"token_type"`
ExpiresIn int64 `json:"expires_in"`
IssuedAt int64 `json:"issued_at"`
}
// Alias for LoginResult