add force reset modal

This commit is contained in:
Keviin Åberg Kultalahti 2021-05-21 12:08:31 +02:00
parent acc8fc6232
commit fc45408d0f
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,11 @@
const password = Math.random().toString(36).substr(2, 20)
async function resetPassword() {
const res = await users.save({ ...user, password })
const res = await users.save({
...user,
password,
forceResetPassword: true,
})
if (res.status) {
notifications.error(res.message)
} else {