Update config.py

Order params alphabetically
This commit is contained in:
Taylor Wilsdon 2025-03-31 11:41:56 -04:00 committed by GitHub
parent 1a1f9b0a42
commit 96048e2f02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -970,14 +970,14 @@ USER_PERMISSIONS_WORKSPACE_PROMPTS_ACCESS = (
== "true"
)
USER_PERMISSIONS_WORKSPACE_TOOLS_ACCESS = (
os.environ.get("USER_PERMISSIONS_WORKSPACE_TOOLS_ACCESS", "False").lower() == "true"
)
USER_PERMISSIONS_WORKSPACE_PUBLIC_SHARING = (
os.environ.get("USER_PERMISSIONS_WORKSPACE_PUBLIC_SHARING", "False").lower() == "true"
)
USER_PERMISSIONS_WORKSPACE_TOOLS_ACCESS = (
os.environ.get("USER_PERMISSIONS_WORKSPACE_TOOLS_ACCESS", "False").lower() == "true"
)
USER_PERMISSIONS_CHAT_CONTROLS = (
os.environ.get("USER_PERMISSIONS_CHAT_CONTROLS", "True").lower() == "true"
)