add missing modifiers

This commit is contained in:
Paul Fitzpatrick
2024-05-09 17:41:24 -04:00
parent 7a57a8c6ee
commit 4ee3ff9eb7

View File

@@ -81,11 +81,11 @@ export class InstallAPIImpl extends BaseAPI implements InstallAPI {
return this.requestJson(`${this._url}/api/install/updates`, {method: 'GET'}); return this.requestJson(`${this._url}/api/install/updates`, {method: 'GET'});
} }
getChecks(): Promise<{probes: BootProbeInfo[]}> { public getChecks(): Promise<{probes: BootProbeInfo[]}> {
return this.requestJson(`${this._url}/api/probes`, {method: 'GET'}); return this.requestJson(`${this._url}/api/probes`, {method: 'GET'});
} }
runCheck(id: string): Promise<BootProbeResult> { public runCheck(id: string): Promise<BootProbeResult> {
return this.requestJson(`${this._url}/api/probes/${id}`, {method: 'GET'}); return this.requestJson(`${this._url}/api/probes/${id}`, {method: 'GET'});
} }