Organization #3

Merged
phoenix merged 3 commits from org into main 2026-05-28 20:04:12 -04:00
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: | run: |
echo "Creating version" echo "Creating version"
VERSION="0.2.3" VERSION="0.2.4"
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)
+13
View File
@@ -0,0 +1,13 @@
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"`
}