Merge pull request #16781 from nextcloud/bug/fix-password-reset

Send new password instead of empty string
This commit is contained in:
Roeland Jago Douma 2019-08-19 11:52:58 +02:00 committed by GitHub
commit b73df01945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,6 +22,7 @@
<template>
<form method="post"
name="login"
:action="OC.generateUrl('login')"
@submit="submit">
<fieldset>
<div v-if="apacheAuthFailed"

View File

@ -103,7 +103,7 @@
try {
const { data } = await Axios.post(this.resetPasswordTarget, {
password: this.user,
password: this.password,
proceed: this.proceed
})
if (data && data.status === 'success') {