feat: enable password update
All checks were successful
Deploy Miniplan / build (push) Successful in 2m21s

This commit is contained in:
2025-03-22 07:56:51 +01:00
parent e4de1c62f8
commit 9eecde7a80
4 changed files with 93 additions and 4 deletions

View File

@@ -134,6 +134,11 @@ export namespace API {
.then(res => res.json())
}
export async function updatePassword(username: String, newPassword: string): Promise<any> {
return api("/auth/update", "PUT", { username, newPassword })
.then(res => res.json())
}
}