luci-compat: Fix typo in wildcard which is supposed to grant all perms.

Signed-off-by: Mirko Vogt <mirko-openwrt@nanl.de>
This commit is contained in:
Mirko Vogt 2020-12-05 12:34:41 +00:00 committed by Jo-Philipp Wich
parent e984b63c36
commit 555faf6f7c

View file

@ -2,10 +2,10 @@
"allow-full-uci-access": {
"description": "Allow full UCI access for legacy applications",
"read": {
"uci": [ "'*" ]
"uci": [ "*" ]
},
"write": {
"uci": [ "'*" ]
"uci": [ "*" ]
}
}
}