Skip to content

Commit

Permalink
chore: fmt for grpc file
Browse files Browse the repository at this point in the history
  • Loading branch information
restanrm committed Apr 16, 2022
1 parent 89a1a56 commit 4fcc5e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion grpcv1.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,11 @@ func (api headscaleV1APIServer) ListMachines(
response := make([]*v1.Machine, len(machines))
for index, machine := range machines {
m := machine.toProto()
validTags, invalidTags := getTags(*api.h.aclPolicy, machine, api.h.cfg.OIDC.StripEmaildomain)
validTags, invalidTags := getTags(
*api.h.aclPolicy,
machine,
api.h.cfg.OIDC.StripEmaildomain,
)
m.InvalidTags = invalidTags
m.ValidTags = validTags
response[index] = m
Expand Down

0 comments on commit 4fcc5e2

Please sign in to comment.