Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
7 lines
217 B
TypeScript
7 lines
217 B
TypeScript
import z from 'zod/v4';
|
|
|
|
export const supportedLocales = ['en', 'pl'];
|
|
|
|
export function defaultPasswordValidator(error = 'Hasło jest za krótkie') {
|
|
return z.string().refine((val) => val.length >= 8, { error });
|
|
}
|