display app configuration values

This commit is contained in:
Julian Krauser 2025-04-25 08:18:27 +02:00
parent 20a2a3ccd0
commit 5d9007f517
10 changed files with 37 additions and 33 deletions

View file

@ -61,7 +61,7 @@ export default defineComponent({
this.setupStatus = "loading";
this.setupMessage = "";
this.$http
.post(`/setup`, {
.post(`/setup/me`, {
username: formData.username.value,
mail: formData.mail.value,
firstname: formData.firstname.value,

View file

@ -93,7 +93,7 @@ export default defineComponent({
this.setupStatus = "loading";
this.setupError = "";
this.$http
.put(`/setup`, {
.post(`/setup/finish`, {
token: this.token,
mail: this.mail,
totp: formData.totp.value,