From 6d5286748539452e5c3c2ec85078a738167b41a2 Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 28 May 2026 15:22:22 -0400 Subject: [PATCH 1/3] Added Organization struct --- tx0/user/organization.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tx0/user/organization.go diff --git a/tx0/user/organization.go b/tx0/user/organization.go new file mode 100644 index 0000000..d1eb090 --- /dev/null +++ b/tx0/user/organization.go @@ -0,0 +1,14 @@ +package user + +import ( + "time" + + "github.com/google/uuid" +) + + +type Organization struct { + Id uuid.UUID `json:"id"` + Name string `json:"name"` + Created *time.Time `json:"created,omitempty"` +} -- 2.47.3 From 548a8eaa075c9e447e57b7cc6edd208b66a62ea9 Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 28 May 2026 20:01:14 -0400 Subject: [PATCH 2/3] go fmt --- tx0/user/organization.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tx0/user/organization.go b/tx0/user/organization.go index d1eb090..2314d51 100644 --- a/tx0/user/organization.go +++ b/tx0/user/organization.go @@ -6,9 +6,8 @@ import ( "github.com/google/uuid" ) - type Organization struct { - Id uuid.UUID `json:"id"` - Name string `json:"name"` + Id uuid.UUID `json:"id"` + Name string `json:"name"` Created *time.Time `json:"created,omitempty"` } -- 2.47.3 From 371a6d0be4b329aa48b35c780ec9579ab4e34c2a Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 28 May 2026 20:02:27 -0400 Subject: [PATCH 3/3] bump: textsender-models --- .gitea/workflows/tag_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 4bd12f1..802b773 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -25,7 +25,7 @@ jobs: run: | echo "Creating version" - VERSION="0.2.3" + VERSION="0.2.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) -- 2.47.3