fix(auth): password min length 6 + show/hide toggle on password inputs
Build & Push Docker Image / build (push) Successful in 2m21s

This commit is contained in:
opencode
2026-08-03 08:01:52 +02:00
parent 68a81ec775
commit 743b177c89
11 changed files with 49 additions and 27 deletions
@@ -123,12 +123,12 @@ export interface UserRoleUpdate {
export interface ChangePasswordInput {
/** @minLength 1 */
currentPassword: string;
/** @minLength 8 */
/** @minLength 6 */
newPassword: string;
}
export interface SetPasswordInput {
/** @minLength 8 */
/** @minLength 6 */
password: string;
}