Add auth token to gitservers

This commit is contained in:
2026-05-02 17:41:36 +02:00
parent 76e3454c4c
commit 86132bdc8d
4 changed files with 14 additions and 27 deletions
+6 -5
View File
@@ -3,11 +3,12 @@ package models
import "errors"
type GitServer struct {
ID string `json:"id"`
Name string `json:"name"`
Protocol string `json:"protocol"`
BaseUrl string `json:"baseUrl"`
Type string `json:"type"`
ID string `json:"id"`
Name string `json:"name"`
Protocol string `json:"protocol"`
BaseUrl string `json:"baseUrl"`
Type string `json:"type"`
AuthToken string `json:"auth_token"`
CreatedAt string `json:"created_at"`
}