Compare commits

..
Author SHA1 Message Date
phoenix b8e8621e0d Build fix
Go CI / Test and Lint (push) Successful in 5s
Go Release / build-and-release (pull_request) Successful in 5s
Go CI / Test and Lint (pull_request) Successful in 5s
2026-05-25 22:12:58 -04:00
phoenix 0bf24d929c Build fix
Go CI / Test and Lint (push) Failing after 6s
Go Release / build-and-release (pull_request) Successful in 7s
Go CI / Test and Lint (pull_request) Failing after 5s
2026-05-25 22:12:07 -04:00
phoenix dcbc2609c4 -m: Added UserProfile
Go Release / build-and-release (pull_request) Successful in 6s
Go CI / Test and Lint (pull_request) Failing after 5s
Go CI / Test and Lint (push) Failing after 50s
2026-05-25 22:10:14 -04:00
3 changed files with 25 additions and 19 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.2.2"
VERSION="0.2.1"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
-18
View File
@@ -1,18 +0,0 @@
package user
import (
"github.com/google/uuid"
"time"
)
type UserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
UserId uuid.UUID `json:"user_id"`
}
type ServiceUserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
ServiceUserId uuid.UUID `json:"service_user_id"`
}
+24
View File
@@ -0,0 +1,24 @@
package user
type UserProfile struct {
Usr *User `json:"user"`
}
func InitUserProfile(usr *User) (usrProfile *UserProfile, done bool) {
if usr == nil {
return nil, false
} else {
if len(usr.Password) > 0 {
var newUsr User
newUsr = *usr
newUsr.Password = ""
usrProfile.Usr = &newUsr
return usrProfile, true
} else {
usrProfile.Usr = usr
return usrProfile, true
}
}
}