Skip to content

Commit d7d05a4

Browse files
authored
fix(ui): fix some broken links (open-webui#21904)
The referenced information was moved to a new location. Signed-off-by: Stefan Weil <sw@weilnetz.de>
1 parent 419ea1c commit d7d05a4

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

backend/open_webui/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def __getattr__(self, key):
322322
if JWT_EXPIRES_IN.value == "-1":
323323
log.warning(
324324
"⚠️ SECURITY WARNING: JWT_EXPIRES_IN is set to '-1'\n"
325-
" See: https://docs.openwebui.com/getting-started/env-configuration\n"
325+
" See: https://docs.openwebui.com/reference/env-configuration\n"
326326
)
327327

328328
####################################

src/lib/components/admin/Settings/General.svelte

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,8 @@
420420
/>
421421

422422
<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
423-
<!-- https://docs.openwebui.com/getting-started/advanced-topics/api-endpoints -->
424423
<a
425-
href="https://docs.openwebui.com/getting-started/api-endpoints"
424+
href="https://docs.openwebui.com/reference/api-endpoints"
426425
target="_blank"
427426
class=" text-gray-300 font-medium underline"
428427
>
@@ -463,7 +462,7 @@
463462
<span class=" font-medium">{$i18n.t('Warning')}:</span>
464463
<span
465464
><a
466-
href="https://docs.openwebui.com/getting-started/env-configuration#jwt_expires_in"
465+
href="https://docs.openwebui.com/reference/env-configuration#jwt_expires_in"
467466
target="_blank"
468467
class=" underline"
469468
>{$i18n.t('No expiration can pose security risks.')}

0 commit comments

Comments
 (0)