Fill RegisterMethod field in Machine
This commit is contained in:
parent
9bac805d50
commit
fc0c519206
2 changed files with 2 additions and 0 deletions
1
api.go
1
api.go
|
@ -397,6 +397,7 @@ func (h *Headscale) handleNewServer(c *gin.Context, db *gorm.DB, idKey wgcfg.Key
|
||||||
m.IPAddress = ip.String()
|
m.IPAddress = ip.String()
|
||||||
m.NamespaceID = pak.NamespaceID
|
m.NamespaceID = pak.NamespaceID
|
||||||
m.AuthKeyID = uint(pak.ID)
|
m.AuthKeyID = uint(pak.ID)
|
||||||
|
m.RegisterMethod = "authKey"
|
||||||
m.Registered = true
|
m.Registered = true
|
||||||
db.Save(&m)
|
db.Save(&m)
|
||||||
|
|
||||||
|
|
1
cli.go
1
cli.go
|
@ -43,6 +43,7 @@ func (h *Headscale) RegisterMachine(key string, namespace string) error {
|
||||||
m.IPAddress = ip.String()
|
m.IPAddress = ip.String()
|
||||||
m.NamespaceID = ns.ID
|
m.NamespaceID = ns.ID
|
||||||
m.Registered = true
|
m.Registered = true
|
||||||
|
m.RegisterMethod = "cli"
|
||||||
db.Save(&m)
|
db.Save(&m)
|
||||||
fmt.Println("Machine registered 🎉")
|
fmt.Println("Machine registered 🎉")
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in a new issue