mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
fix: temp chat perm
This commit is contained in:
parent
2a8a2f1ba3
commit
508fde70ff
2 changed files with 26 additions and 17 deletions
|
|
@ -902,8 +902,15 @@
|
|||
|
||||
const initNewChat = async () => {
|
||||
console.log('initNewChat');
|
||||
if ($user?.role !== 'admin' && $user?.permissions?.chat?.temporary_enforced) {
|
||||
await temporaryChatEnabled.set(true);
|
||||
if ($user?.role !== 'admin') {
|
||||
if ($user?.permissions?.chat?.temporary_enforced) {
|
||||
await temporaryChatEnabled.set(true);
|
||||
}
|
||||
|
||||
if (!$user?.permissions?.chat?.temporary) {
|
||||
await temporaryChatEnabled.set(false);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if ($settings?.temporaryChatByDefault ?? false) {
|
||||
|
|
|
|||
|
|
@ -713,24 +713,26 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class=" py-0.5 flex w-full justify-between">
|
||||
<div id="temp-chat-default-label" class=" self-center text-xs">
|
||||
{$i18n.t('Temporary Chat by Default')}
|
||||
</div>
|
||||
{#if $user.role === 'admin' || $user?.permissions?.chat?.temporary}
|
||||
<div>
|
||||
<div class=" py-0.5 flex w-full justify-between">
|
||||
<div id="temp-chat-default-label" class=" self-center text-xs">
|
||||
{$i18n.t('Temporary Chat by Default')}
|
||||
</div>
|
||||
|
||||
<div class="flex items-center gap-2 p-1">
|
||||
<Switch
|
||||
ariaLabelledbyId="temp-chat-default-label"
|
||||
tooltip={true}
|
||||
bind:state={temporaryChatByDefault}
|
||||
on:change={() => {
|
||||
saveSettings({ temporaryChatByDefault });
|
||||
}}
|
||||
/>
|
||||
<div class="flex items-center gap-2 p-1">
|
||||
<Switch
|
||||
ariaLabelledbyId="temp-chat-default-label"
|
||||
tooltip={true}
|
||||
bind:state={temporaryChatByDefault}
|
||||
on:change={() => {
|
||||
saveSettings({ temporaryChatByDefault });
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div>
|
||||
<div class=" py-0.5 flex w-full justify-between">
|
||||
|
|
|
|||
Loading…
Reference in a new issue