From cfbb0b993ab78e5d0cb0ffc5f00efd6f8e5e0bcc Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Sun, 28 Nov 2021 19:07:14 +0100 Subject: [PATCH] Behavior added to documentation --- docs/features/core/groups.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/features/core/groups.md b/docs/features/core/groups.md index 25fd16c2..0d75d327 100644 --- a/docs/features/core/groups.md +++ b/docs/features/core/groups.md @@ -90,11 +90,16 @@ This allows you to more finely control who has access to manage which groups. ### Auto Leave -By default in AA, Both requests and leaves for non-open groups must be approved by a group manager. If you wish to allow users to leave groups without requiring approvals, add the following lines to your `local.py` +By default, in AA both requests and leaves for non-open groups must be approved by a group manager. If you wish to allow users to leave groups without requiring approvals, add the following lines to your `local.py` ```python ## Allows users to freely leave groups without requiring approval. -AUTO_LEAVE = True +GROUPMANAGEMENT_AUTO_LEAVE = True +``` + +```eval_rst +.. note:: + Before you set `GROUPMANAGEMENT_AUTO_LEAVE = True`, make sure there are no pending leave requests, as this option will hide the "Leave Requests" tab. ``` ## Settings