This commit is contained in:
Drew Ansbacher
2022-02-10 10:33:05 -07:00
committed by Aiden McClelland
parent b66720dfd0
commit 4aafacfa8b
2 changed files with 2 additions and 4 deletions

View File

@@ -155,9 +155,7 @@ export class ServerShowPage {
await loader.present() await loader.present()
try { try {
await this.embassyApi.restartServer({ await this.embassyApi.restartServer({})
'marketplace-url': this.config.marketplace.url,
})
} catch (e) { } catch (e) {
this.errToast.present(e) this.errToast.present(e)
} finally { } finally {

View File

@@ -77,7 +77,7 @@ export abstract class ApiService implements Source<DataModel>, Http<DataModel> {
} }
abstract restartServer( abstract restartServer(
params: RR.UpdateServerReq, params: RR.RestartServerReq,
): Promise<RR.RestartServerRes> ): Promise<RR.RestartServerRes>
abstract shutdownServer( abstract shutdownServer(