add force reset modal
This commit is contained in:
parent
acc8fc6232
commit
fc45408d0f
|
@ -10,7 +10,11 @@
|
||||||
const password = Math.random().toString(36).substr(2, 20)
|
const password = Math.random().toString(36).substr(2, 20)
|
||||||
|
|
||||||
async function resetPassword() {
|
async function resetPassword() {
|
||||||
const res = await users.save({ ...user, password })
|
const res = await users.save({
|
||||||
|
...user,
|
||||||
|
password,
|
||||||
|
forceResetPassword: true,
|
||||||
|
})
|
||||||
if (res.status) {
|
if (res.status) {
|
||||||
notifications.error(res.message)
|
notifications.error(res.message)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue