I am using Tutor v14.0.1 . I found that these 2 feature toggles don’t work for me. Do they work for you?
DISABLE_UNENROLLMENT
ENABLE_ACCOUNT_DELETION
The unenroll option still showing on learner’s dashboard
The delete account section still showing on the account page.
My plugin:
from tutor import hooks
hooks.Filters.ENV_PATCHES.add_items([
(
"openedx-lms-common-settings",
"""
FEATURES['ENABLE_ACCOUNT_DELETION'] = False
"""
),
(
"openedx-common-settings",
"""
FEATURES['DISABLE_UNENROLLMENT'] = True
"""
)
])