allow video trimmer

This commit is contained in:
Markos Gogoulos
2025-05-22 12:16:52 +03:00
parent d143c5da1c
commit ad86bd2a4c
2 changed files with 11 additions and 0 deletions
+4
View File
@@ -498,6 +498,7 @@ JAZZMIN_UI_TWEAKS = {"theme": "flatly"}
USE_ROUNDED_CORNERS = True
ALLOW_VIDEO_TRIMMER = True
try:
# keep a local_settings.py file for local overrides
from .local_settings import * # noqa
@@ -508,6 +509,8 @@ except ImportError:
# local_settings not in use
pass
# Don't add new settings below that could be overridden in local_settings.py!!!
if "http" not in FRONTEND_HOST:
# FRONTEND_HOST needs a http:// preffix
FRONTEND_HOST = f"http://{FRONTEND_HOST}" # noqa
@@ -545,3 +548,4 @@ if GLOBAL_LOGIN_REQUIRED:
r'/accounts/confirm-email/.*/$',
# r'/api/v[0-9]+/',
]