You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
latest dev-Version
"home/bridge/config/devices" retrives an array of all devices. In my case I'd like to sort devices by friendly_name as I'm using a structured pattern. Sorting can be archived easily by msg.payload.message.sort((a, b) => a.friendly_name.localeCompare(b.friendly_name));
But Coordinator has very limited subset of properties (especially lacks friendly_name)
Some more properties would make sense and will make sorting easier:
friendly_name (even if value is "")
softwareBuildID: (as printed in startup)
lastSeen: (even if this returns current timestamp)
...
The text was updated successfully, but these errors were encountered:
latest dev-Version
"home/bridge/config/devices" retrives an array of all devices. In my case I'd like to sort devices by friendly_name as I'm using a structured pattern. Sorting can be archived easily by
msg.payload.message.sort((a, b) => a.friendly_name.localeCompare(b.friendly_name));
But Coordinator has very limited subset of properties (especially lacks friendly_name)
Other devices have way more properties
Some more properties would make sense and will make sorting easier:
friendly_name (even if value is "")
softwareBuildID: (as printed in startup)
lastSeen: (even if this returns current timestamp)
...
The text was updated successfully, but these errors were encountered: