patches v1.5.1 #93

Merged
jkeffects merged 5 commits from develop into main 2025-05-07 07:29:02 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit c17355fcd1 - Show all commits

View file

@ -84,7 +84,7 @@ export default defineComponent({
this.changeStatus = "loading";
this.changeError = "";
this.$http
.post(`/user/changeToPW`, {
.patch(`/user/changeToPW`, {
newpassword: await hashString(formData.new.value),
})
.then((result) => {

View file

@ -69,7 +69,7 @@ export default defineComponent({
this.verifyStatus = "loading";
this.verifyError = "";
this.$http
.post(`/user/changeToTOTP`, {
.patch(`/user/changeToTOTP`, {
otp: this.otp,
totp: formData.totp.value,
})

View file

@ -87,7 +87,7 @@ export default defineComponent({
this.changeStatus = "loading";
this.changeError = "";
this.$http
.post(`/user/changepw`, {
.patch(`/user/changepw`, {
current: await hashString(formData.current.value),
newpassword: await hashString(formData.new.value),
})