mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Simplify \w+ regex usage
This commit is contained in:
parent
0e15e174c5
commit
a3323a2618
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ import { z } from '@/deps.ts';
|
|||
import type { AppController } from '@/app.ts';
|
||||
import { Conf } from '../../config.ts';
|
||||
|
||||
const nameSchema = z.string().min(1).regex(/^[\w_]+$/);
|
||||
const nameSchema = z.string().min(1).regex(/^\w+$/);
|
||||
|
||||
/**
|
||||
* Serves NIP-05's nostr.json.
|
||||
|
|
|
|||
|
|
@ -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_]{1,30}$/).describe('unique'),
|
||||
username: z.string().regex(/^\w{1,30}$/).describe('unique'),
|
||||
createdAt: z.date(),
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue