Presale: remove webmanifest (#5275)

* Remove webmanifest from presale

* move webmanifest from presale to base urls
This commit is contained in:
Richard Schreiber
2025-06-30 09:33:42 +02:00
committed by GitHub
parent 1a990dfecc
commit f66a41f6a7
7 changed files with 56 additions and 32 deletions

View File

@@ -43,6 +43,7 @@ from pretix.base.views import applepay, js_helpers
from .base.views import (
cachedfiles, csp, health, js_catalog, metrics, redirect, source,
webmanifest,
)
base_patterns = [
@@ -51,6 +52,7 @@ base_patterns = [
re_path(r'^healthcheck/$', health.healthcheck,
name='healthcheck'),
re_path(r'^redirect/$', redirect.redir_view, name='redirect'),
re_path(r'^site.webmanifest$', webmanifest.webmanifest, name='site.webmanifest'),
re_path(r'^jsi18n/(?P<lang>[a-zA-Z-_]+)/$', js_catalog.js_catalog, name='javascript-catalog'),
re_path(r'^metrics$', metrics.serve_metrics,
name='metrics'),