From e45aa7a973221f5dc39393f1467496e6699550a1 Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Thu, 9 May 2024 17:41:24 -0400 Subject: [PATCH] add missing modifiers --- app/common/InstallAPI.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'}); }