fix(dashboard): guard update endpoint in Docker with structured guidance (salvage #34831) (#36263)

* fix: guard dashboard update in Docker

* fix(dashboard): align action response type

---------

Co-authored-by: Donovan Yohan <donovan-yohan@users.noreply.github.com>
Co-authored-by: Donovan Yohan <34756395+donovan-yohan@users.noreply.github.com>
This commit is contained in:
Ben Barclay
2026-06-01 15:39:35 +10:00
committed by GitHub
co-authored by Donovan Yohan Donovan Yohan
parent 359f2be12e
commit c1a531d063
3 changed files with 104 additions and 3 deletions
+4 -1
View File
@@ -526,7 +526,10 @@ export interface AuthMeResponse {
export interface ActionResponse {
name: string;
ok: boolean;
pid: number;
pid: number | null;
error?: string;
message?: string;
update_command?: string;
}
/** Per-call overrides for {@link fetchJSON}. */