Updates to dbus
Rolling release / release (push) Successful in 11m10s

This commit is contained in:
2026-09-11 19:51:45 -04:00
parent 0d85553120
commit d8d4f18e10
2 changed files with 10 additions and 1 deletions
+4 -1
View File
@@ -37,7 +37,10 @@ export async function serveOnSessionBus(daemon) {
DownloadModel(model) { return daemon.downloadModel(model); }
CancelModel(model) { return daemon.cancelModel(model); }
WipeComputerTraces() { return daemon.wipeComputerTraces(); }
ConfirmationRequired(tool, args, pattern) { this.emit('ConfirmationRequired', String(tool), String(args), String(pattern)); }
// configureMembers wraps signal methods and emits through dbus-next's
// private $emitter. Returning the payload is sufficient; calling
// `this.emit` here crashes because Interface does not expose that method.
ConfirmationRequired(tool, args, pattern) { return [String(tool), String(args), String(pattern)]; }
StateChanged(state) { return String(state); }
Reply(text) { return String(text); }
Token(text) { return String(text); }