From 127044efad54ff8ed7072f3ef3a47bb650d3a01f Mon Sep 17 00:00:00 2001 From: ibalboteo Date: Mon, 14 Mar 2022 11:03:07 +0100 Subject: [PATCH] MF-1575 Add 'Name' field to ListMembers response in things svc (#1576) Signed-off-by: Ivan Balboteo Co-authored-by: Ivan Balboteo --- things/api/things/http/endpoint.go | 1 + 1 file changed, 1 insertion(+) diff --git a/things/api/things/http/endpoint.go b/things/api/things/http/endpoint.go index 234266cc..850b72b5 100644 --- a/things/api/things/http/endpoint.go +++ b/things/api/things/http/endpoint.go @@ -559,6 +559,7 @@ func buildThingsResponse(up things.Page) thingsPageRes { Key: th.Key, Owner: th.Owner, Metadata: th.Metadata, + Name: th.Name, } res.Things = append(res.Things, view) }