mirror of
https://github.com/Buriburizaem0n/admin-frontend-domain.git
synced 2026-05-06 05:38:51 +00:00
fix: relax URL validation to allow Bot Tokens and SMTP hosts
This commit is contained in:
@@ -50,7 +50,7 @@ interface NotifierCardProps {
|
|||||||
|
|
||||||
const notificationFormSchema = z.object({
|
const notificationFormSchema = z.object({
|
||||||
name: z.string().min(1),
|
name: z.string().min(1),
|
||||||
url: z.string().url(),
|
url: z.string().min(1),
|
||||||
request_method: z.coerce.number().int().min(1).max(255),
|
request_method: z.coerce.number().int().min(1).max(255),
|
||||||
request_type: z.coerce.number().int().min(1).max(255),
|
request_type: z.coerce.number().int().min(1).max(255),
|
||||||
request_header: z.string(),
|
request_header: z.string(),
|
||||||
|
|||||||
Reference in New Issue
Block a user