From fa7bcb3c3d1a8bc344f9a55f102cee879e5a0a01 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 14 Mar 2023 18:49:15 +0100 Subject: [PATCH] manifest: we probably want actual bools for permissions auth_header / show_tile / protected --- manifest.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.toml b/manifest.toml index f6da502..427fa5b 100644 --- a/manifest.toml +++ b/manifest.toml @@ -60,11 +60,11 @@ ram.runtime = "50M" [resources.permissions] main.url = "/" api.url = "/api" - api.additional_urls="/scripts/api.js" - api.allowed="visitors" - api.auth_header="false" - api.show_tile="false" - api.protected="true" + api.additional_urls = "/scripts/api.js" + api.allowed = "visitors" + api.auth_header = false + api.show_tile = false + api.protected = true [resources.apt] packages = "mariadb-server acl php8.0-gd php8.0-zip php8.0-dom php8.0-mbstring php8.0-gmp php8.0-mysql php8.0-sqlite3 php8.0-curl php8.0-intl php8.0-xml"