mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-22 02:12:40 +01:00
Check for old password when setting new
Checks for password
This commit is contained in:
parent
e3707e6a56
commit
582853542a
@ -127,7 +127,7 @@ router.patch(
|
||||
}
|
||||
|
||||
if (body.new_password) {
|
||||
if (!body.password && !user.email) {
|
||||
if (!body.password || !user.email) {
|
||||
throw FieldErrors({
|
||||
password: {
|
||||
code: "BASE_TYPE_REQUIRED",
|
||||
|
Loading…
Reference in New Issue
Block a user