1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

add login details to RegisterResponse so GUI clients show login display name

This commit is contained in:
Raal Goff 2021-10-15 23:09:55 +08:00
parent 8843188b84
commit 0603e29c46
2 changed files with 13 additions and 0 deletions

2
api.go
View File

@ -147,6 +147,8 @@ func (h *Headscale) RegistrationHandler(c *gin.Context) {
resp.AuthURL = ""
resp.MachineAuthorized = true
resp.User = *m.Namespace.toUser()
resp.Login = *m.Namespace.toLogin()
respBody, err := encode(resp, &mKey, h.privateKey)
if err != nil {
log.Error().

View File

@ -216,3 +216,14 @@ func (n *Namespace) toUser() *tailcfg.User {
}
return &u
}
func (n *Namespace) toLogin() *tailcfg.Login {
l := tailcfg.Login{
ID: tailcfg.LoginID(n.ID),
LoginName: n.Name,
DisplayName: n.Name,
ProfilePicURL: "",
Domain: "headscale.net",
}
return &l
}