allow custom default user role

This commit is contained in:
David Girón
2024-02-23 11:03:06 +01:00
committed by GitHub
parent b1fa32c5d6
commit 214881451d

View File

@@ -187,7 +187,7 @@ DEFAULT_PROMPT_SUGGESTIONS = (
)
DEFAULT_USER_ROLE = "pending"
DEFAULT_USER_ROLE = os.getenv("DEFAULT_USER_ROLE", "pending")
USER_PERMISSIONS = {"chat": {"deletion": True}}