mirror of
https://github.com/umami-software/umami.git
synced 2026-02-14 09:35:36 +01:00
fix yup validation on password change
This commit is contained in:
parent
c97d4037a6
commit
69410f4a55
1 changed files with 0 additions and 1 deletions
|
|
@ -23,7 +23,6 @@ export interface UserPasswordRequestBody {
|
||||||
|
|
||||||
const schema = {
|
const schema = {
|
||||||
POST: yup.object().shape({
|
POST: yup.object().shape({
|
||||||
id: yup.string().uuid().required(),
|
|
||||||
currentPassword: yup.string().required(),
|
currentPassword: yup.string().required(),
|
||||||
newPassword: yup.string().min(8).required(),
|
newPassword: yup.string().min(8).required(),
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue