diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index e1553fd..5fbd045 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -25,7 +25,7 @@ jobs: run: | echo "Creating version" - VERSION="0.1.4" + VERSION="0.1.5" PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10) BRANCH_REF="${{ gitea.ref }}" BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3) diff --git a/tx0/user/service_user.go b/tx0/user/service_user.go index 0c9fece..c613a7c 100644 --- a/tx0/user/service_user.go +++ b/tx0/user/service_user.go @@ -9,7 +9,8 @@ import ( type ServiceUser struct { Id uuid.UUID `json:"id"` // TODO: Remove the omitempty tags at a later point - Username string `json:"username,omitempty"` - Passphrase string `json:"passphrase,omitempty"` - Created time.Time `json:"created"` + Username string `json:"username,omitempty"` + Passphrase string `json:"passphrase,omitempty"` + Created time.Time `json:"created"` + LastLogin *time.Time `json:"last_login,omitempty"` }