diff --git a/app/common/InstallAPI.ts b/app/common/InstallAPI.ts index b71b1389..3f50db49 100644 --- a/app/common/InstallAPI.ts +++ b/app/common/InstallAPI.ts @@ -81,11 +81,11 @@ export class InstallAPIImpl extends BaseAPI implements InstallAPI { 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'}); } - runCheck(id: string): Promise { + public runCheck(id: string): Promise { return this.requestJson(`${this._url}/api/probes/${id}`, {method: 'GET'}); }