From f177d6448dc969cbc4e64bbb2d117723cf67bf4b Mon Sep 17 00:00:00 2001 From: ManInDark <61268856+ManInDark@users.noreply.github.com> Date: Mon, 9 Mar 2026 13:12:09 +0100 Subject: [PATCH] fix: add note to readme on how to fix permission errors --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 5155983..760bedd 100644 --- a/README.md +++ b/README.md @@ -181,3 +181,26 @@ This project is licensed under the GNU Affero General Public License v3.0 - see ## Support If you encounter any issues or have questions, please file an issue on the GitHub repository. + +## Issues + +### Missing Permissions + +Especially when updating from older versions, it may be that the permissions used in the newer versions have never been set. This causes numerous `missing permissions` errors to appear. The solution is to update the `auth.json` in the `data` directory for each user to include the following json: + +```json +"permissions": [{ + "habit": { + "write": true, + "interact": true + }, + "wishlist": { + "write": true, + "interact": true + }, + "coins": { + "write": true, + "interact": true + } +} +```