From a8d8272edfe1157ddb9ffdcf94dfb39b9496c10b Mon Sep 17 00:00:00 2001 From: axolotle Date: Sat, 1 May 2021 13:00:00 +0200 Subject: [PATCH] display post-install human readable route name --- app/src/views/PostInstall.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/src/views/PostInstall.vue b/app/src/views/PostInstall.vue index 4a55c906..17bfa878 100644 --- a/app/src/views/PostInstall.vue +++ b/app/src/views/PostInstall.vue @@ -118,7 +118,11 @@ export default { performPostInstall (force = false) { // FIXME does the api will throw an error for bad passwords ? - api.post('postinstall' + (force ? '?force_diskspace' : ''), { domain: this.domain, password: this.password }).then(data => { + api.post( + 'postinstall' + (force ? '?force_diskspace' : ''), + { domain: this.domain, password: this.password }, + { key: 'postinstall' } + ).then(() => { // Display success message and allow the user to login this.goToStep('login') }).catch(err => {