diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py
index 2d66e37b6..0ac92bd23 100644
--- a/backend/open_webui/config.py
+++ b/backend/open_webui/config.py
@@ -1029,6 +1029,10 @@ USER_PERMISSIONS_CHAT_TEMPORARY = (
os.environ.get("USER_PERMISSIONS_CHAT_TEMPORARY", "True").lower() == "true"
)
+USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED = (
+ os.environ.get("USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED", "False").lower()
+ == "true"
+)
USER_PERMISSIONS_FEATURES_WEB_SEARCH = (
os.environ.get("USER_PERMISSIONS_FEATURES_WEB_SEARCH", "True").lower() == "true"
@@ -1064,6 +1068,7 @@ DEFAULT_USER_PERMISSIONS = {
"delete": USER_PERMISSIONS_CHAT_DELETE,
"edit": USER_PERMISSIONS_CHAT_EDIT,
"temporary": USER_PERMISSIONS_CHAT_TEMPORARY,
+ "temporary_enforced": USER_PERMISSIONS_CHAT_TEMPORARY_ENFORCED,
},
"features": {
"web_search": USER_PERMISSIONS_FEATURES_WEB_SEARCH,
diff --git a/backend/open_webui/routers/users.py b/backend/open_webui/routers/users.py
index 825a39723..4cf9102e1 100644
--- a/backend/open_webui/routers/users.py
+++ b/backend/open_webui/routers/users.py
@@ -89,6 +89,7 @@ class ChatPermissions(BaseModel):
delete: bool = True
edit: bool = True
temporary: bool = True
+ temporary_enforced: bool = False
class FeaturesPermissions(BaseModel):
diff --git a/src/lib/components/admin/Users/Groups.svelte b/src/lib/components/admin/Users/Groups.svelte
index 89b4141d6..15497cb20 100644
--- a/src/lib/components/admin/Users/Groups.svelte
+++ b/src/lib/components/admin/Users/Groups.svelte
@@ -52,12 +52,19 @@
prompts: false,
tools: false
},
+ sharing: {
+ public_models: false,
+ public_knowledge: false,
+ public_prompts: false,
+ public_tools: false
+ },
chat: {
controls: true,
file_upload: true,
delete: true,
edit: true,
- temporary: true
+ temporary: true,
+ temporary_enforced: true
},
features: {
web_search: true,
diff --git a/src/lib/components/admin/Users/Groups/Permissions.svelte b/src/lib/components/admin/Users/Groups/Permissions.svelte
index 157c8f7ca..e1aa73f2a 100644
--- a/src/lib/components/admin/Users/Groups/Permissions.svelte
+++ b/src/lib/components/admin/Users/Groups/Permissions.svelte
@@ -23,8 +23,9 @@
controls: true,
delete: true,
edit: true,
+ file_upload: true,
temporary: true,
- file_upload: true
+ temporary_enforced: true
},
features: {
web_search: true,
@@ -277,6 +278,16 @@