mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
feat: return error if validation is failed
This commit is contained in:
parent
ad4401aa40
commit
fdbc9657bc
10
grpcv1.go
10
grpcv1.go
@ -3,6 +3,7 @@ package headscale
|
||||
|
||||
import (
|
||||
"context"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
v1 "github.com/juanfont/headscale/gen/go/headscale/v1"
|
||||
@ -191,6 +192,15 @@ func (api headscaleV1APIServer) SetTags(
|
||||
return nil, err
|
||||
}
|
||||
|
||||
for _, tag := range request.GetTags() {
|
||||
if strings.Index(tag, "tag:") != 0 {
|
||||
return &v1.SetTagsResponse{Machine: nil, Error: &v1.Error{
|
||||
Status: 400,
|
||||
Message: "Invalid tag detected. Each tag must start with the string 'tag:'",
|
||||
}}, nil
|
||||
}
|
||||
}
|
||||
|
||||
api.h.SetTags(machine, request.GetTags())
|
||||
|
||||
log.Trace().
|
||||
|
Loading…
Reference in New Issue
Block a user