Skip to content

Commit

Permalink
add missing modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
paulfitz committed May 13, 2024
1 parent 5e3a95e commit 86c5958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/common/InstallAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<BootProbeResult> {
public runCheck(id: string): Promise<BootProbeResult> {
return this.requestJson(`${this._url}/api/probes/${id}`, {method: 'GET'});
}

Expand Down

0 comments on commit 86c5958

Please sign in to comment.