mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import vine from '@vinejs/vine';
|
|
|
|
export const createApiTokenValidator = vine.compile(
|
|
vine.object({
|
|
name: vine.string().trim().minLength(1).maxLength(255),
|
|
expiresAt: vine.date().optional(),
|
|
})
|
|
);
|