Skip to content
Snippets Groups Projects
Verified Commit c459e39d authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Reformat

parent af0d994b
No related branches found
No related tags found
1 merge request!1150Reformat
Pipeline #109280 failed
......@@ -60,7 +60,9 @@ class Command(BaseCommand):
# Start building route
route = "{\n"
route += f' path: "{url_pattern}",\n'
route += ' component: () => import("aleksis.core/components/LegacyBaseTemplate.vue"),\n'
route += (
' component: () => import("aleksis.core/components/LegacyBaseTemplate.vue"),\n'
)
route += f' name: "{route_name}",\n'
if menu:
......
......@@ -64,13 +64,14 @@ UWSGI_SERVE_STATIC = True
UWSGI_SERVE_MEDIA = False
DEV_SERVER_PORT = 8000
DJANGO_VITE_DEV_SERVER_PORT = DEV_SERVER_PORT+1
DJANGO_VITE_DEV_SERVER_PORT = DEV_SERVER_PORT + 1
ALLOWED_HOSTS = _settings.get("http.allowed_hosts", [getfqdn(), "localhost", "127.0.0.1", "[::1]"])
BASE_URL = _settings.get(
"http.base_url", f"http://localhost:{DEV_SERVER_PORT}" if DEBUG else f"//{ALLOWED_HOSTS[0]}"
)
def generate_trusted_origins():
origins = []
origins += [f"http://{host}" for host in ALLOWED_HOSTS]
......@@ -79,6 +80,8 @@ def generate_trusted_origins():
origins += [f"http://{host}:{DEV_SERVER_PORT}" for host in ALLOWED_HOSTS]
origins += [f"http://{host}:{DJANGO_VITE_DEV_SERVER_PORT}" for host in ALLOWED_HOSTS]
return origins
CSRF_TRUSTED_ORIGINS = _settings.get("http.trusted_origins", generate_trusted_origins())
# Application definition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment