Compare commits

..
Author SHA1 Message Date
phoenix 7cc10fd264 tsk-24: Added IssuedAt to token.LoginResult 2025-12-30 18:43:25 -05:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: | run: |
echo "Creating version" echo "Creating version"
VERSION="0.0.14" VERSION="0.0.13"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10) PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}" BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3) BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+3 -3
View File
@@ -5,7 +5,7 @@ import (
) )
type Message struct { type Message struct {
Id *uuid.UUID `json:"id,omitempty"` Id uuid.UUID `json:"id"`
Content string `json:"content"` Content string `json:"content,omitempty"`
UserId *uuid.UUID `json:"user_id,omitempty"` UserId uuid.UUID `json:"user_id"`
} }