From baa29fe9633618ada96b2ceb82404c97e14d237d Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Mon, 20 Mar 2023 22:40:36 +0100 Subject: [PATCH] chore(eslint): update regex for url_suffix --- apps/schema.json | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/apps/schema.json b/apps/schema.json index 1bf8e1cd..e6ffb6ac 100644 --- a/apps/schema.json +++ b/apps/schema.json @@ -93,7 +93,7 @@ }, "url_suffix": { "type": "string", - "pattern": "^/[a-z0-9-_]+$" + "pattern": "^/[a-z0-9-_/]+$" }, "form_fields": { "type": "array", @@ -125,18 +125,5 @@ ] } }, - "required": [ - "name", - "available", - "port", - "id", - "tipi_version", - "version", - "categories", - "description", - "short_desc", - "author", - "source", - "form_fields" - ] + "required": ["name", "available", "port", "id", "tipi_version", "version", "categories", "description", "short_desc", "author", "source", "form_fields"] }