From: Mirko Vogt Date: Sat, 5 Dec 2020 12:34:41 +0000 (+0000) Subject: luci-compat: Fix typo in wildcard which is supposed to grant all perms. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=555faf6f7c0d81fea58ea71af81b7b9abcbb7f46;p=openwrt-luci.git luci-compat: Fix typo in wildcard which is supposed to grant all perms. Signed-off-by: Mirko Vogt --- diff --git a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json index ea1a435367..8f07152589 100644 --- a/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json +++ b/modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json @@ -2,10 +2,10 @@ "allow-full-uci-access": { "description": "Allow full UCI access for legacy applications", "read": { - "uci": [ "'*" ] + "uci": [ "*" ] }, "write": { - "uci": [ "'*" ] + "uci": [ "*" ] } } }