mirror of
https://github.com/aljazceru/ditto.git
synced 2026-02-09 15:34:20 +01:00
User: enforce {1,30} character limit on username
This commit is contained in:
@@ -4,7 +4,7 @@ const kv = await Deno.openKv();
|
||||
|
||||
const userSchema = z.object({
|
||||
pubkey: z.string().regex(/^[0-9a-f]{64}$/).describe('primary'),
|
||||
username: z.string().regex(/^[\w_]+$/).describe('unique'),
|
||||
username: z.string().regex(/^[\w_]{1,30}$/).describe('unique'),
|
||||
createdAt: z.date(),
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user