feat: allow commenting by regular users when posting media requires advanced permissions (#1023)

This commit is contained in:
Kyle Maas
2024-10-02 08:52:30 -04:00
committed by GitHub
parent f7136e2a11
commit 90e593946d
3 changed files with 39 additions and 2 deletions

View File

@@ -15,6 +15,10 @@ TIME_ZONE = "Europe/London"
# valid options include 'all', 'email_verified', 'advancedUser'
CAN_ADD_MEDIA = "all"
# who can comment
# valid options include 'all', 'email_verified', 'advancedUser'
CAN_COMMENT = "all"
# valid choices here are 'public', 'private', 'unlisted
PORTAL_WORKFLOW = "public"