Compare commits

...
Author SHA1 Message Date
phoenix 0e41936506 Added Id field 2025-11-01 21:33:36 -04:00
phoenix 787a6e1d6d Version bump 2025-11-01 20:47:58 -04:00
phoenix c316c0d9b9 Workflow fix 2025-11-01 20:45:17 -04:00
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION=$(git tag --sort=-version:refname | sed 's/-\(main\|devel\).*//' | uniq | head -n 1)
VERSION="0.0.4"
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
@@ -5,6 +5,7 @@ import (
)
type Contact struct {
Id uuid.UUID `json:"id,omitempty"`
PhoneNumber string `json:"phone_number,omitempty"`
UserId uuid.UUID `json:"user_id,omitempty"`
}