From 66c83a9b8c481270172ad670e74fb86532a8ed2c Mon Sep 17 00:00:00 2001 From: aspen Date: Wed, 10 Sep 2025 01:23:55 +1200 Subject: [PATCH] Add 'hidden' boolean property to item configuration schema; default set to false --- src/utils/ConfigSchema.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/utils/ConfigSchema.json b/src/utils/ConfigSchema.json index 92039798..e7edd4a0 100644 --- a/src/utils/ConfigSchema.json +++ b/src/utils/ConfigSchema.json @@ -955,6 +955,12 @@ "nullable": true, "description": "An icon, either as a font-awesome, simple-icon, selfh.st, or mdi identifier, emoji, favicon, generative or the URL/path to a local or remote icon asset" }, + "hidden": { + "title": "Hidden from Homepage", + "type": "boolean", + "default": false, + "description": "If true, this item will be hidden from the homepage/dashboard but still searchable." + }, "url": { "title": "Service URL", "type": "string",