Add back bridge_commands_support via backend.proto

This commit is contained in:
Henrik Giesel 2021-01-18 01:50:23 +01:00
parent 7f671cf837
commit 60ed9c1e22
2 changed files with 2 additions and 0 deletions

View File

@ -1092,6 +1092,7 @@ message GraphsOut {
uint32 scheduler_version = 5;
/// Seconds to add to UTC timestamps to get local time.
int32 local_offset_secs = 7;
bool bridge_commands_supported = 8;
}
message GraphPreferences {

View File

@ -44,6 +44,7 @@ impl Collection {
next_day_at_secs: timing.next_day_at as u32,
scheduler_version: self.sched_ver() as u32,
local_offset_secs: local_offset_secs as i32,
bridge_commands_supported: true,
})
}