From 11062cfe338a24a05d29e4cf6b356c7bc60ffd01 Mon Sep 17 00:00:00 2001 From: DrMxrcy <58747968+DrMxrcy@users.noreply.github.com> Date: Fri, 28 Apr 2023 17:22:03 -0400 Subject: [PATCH] Add Select to Paperless NGX (#413) --- apps/paperless-ngx/config.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apps/paperless-ngx/config.json b/apps/paperless-ngx/config.json index 69388977..8518609a 100644 --- a/apps/paperless-ngx/config.json +++ b/apps/paperless-ngx/config.json @@ -34,13 +34,15 @@ "env_variable": "PAPERLESS_ADMIN_PASSWORD" }, { + "label": "Enable Tika", "type": "text", - "label": "Enable Tika (1 or 0)", + "hint": "Do you want to enable a Tika server for parsing and converting 'Office' documents (such as '.doc', '.xlsx' and '.odt')", "required": true, - "min": 1, - "max": 1, - "hint": "1 = yes, 2= no", - "env_variable": "PAPERLESS_TIKA_ENABLED" + "options": [ + { "label": "Yes", "value": "1" }, + { "label": "No", "value": "2" } + ], + "env_variable": "REVOLT_INVITE_ONLY" } ] }