diff --git a/bundles/org.openhab.core.io.rest.core/src/main/java/org/openhab/core/io/rest/core/internal/thing/ThingResource.java b/bundles/org.openhab.core.io.rest.core/src/main/java/org/openhab/core/io/rest/core/internal/thing/ThingResource.java index cb517fb9353..36e5e5c1b8d 100644 --- a/bundles/org.openhab.core.io.rest.core/src/main/java/org/openhab/core/io/rest/core/internal/thing/ThingResource.java +++ b/bundles/org.openhab.core.io.rest.core/src/main/java/org/openhab/core/io/rest/core/internal/thing/ThingResource.java @@ -331,7 +331,8 @@ public Response getAll(@Context Request request, CacheControl cc = new CacheControl(); cc.setMustRevalidate(true); cc.setPrivate(true); - thingStream = dtoMapper.limitToFields(thingStream, "UID,label,bridgeUID,thingTypeUID,location,editable"); + thingStream = dtoMapper.limitToFields(thingStream, + "UID,label,bridgeUID,thingTypeUID,channels,location,editable"); return Response.ok(new Stream2JSONInputStream(thingStream)).lastModified(cacheableListLastModified) .cacheControl(cc).build(); }