Event-level domains: Fix customer logout

This commit is contained in:
Raphael Michel
2021-07-16 13:30:21 +02:00
parent dcf29ec63e
commit 2a96575b4d
3 changed files with 14 additions and 4 deletions

View File

@@ -156,6 +156,9 @@ event_patterns = [
re_path(r'^widget/v1.css$', pretix.presale.views.widget.widget_css, name='event.widget.css'),
re_path(r'^(?P<subevent>\d+)/widget/product_list$', pretix.presale.views.widget.WidgetAPIProductList.as_view(),
name='event.widget.productlist'),
# Account management is done on org level, but we at least need a logout
re_path(r'^account/logout$', pretix.presale.views.customer.LogoutView.as_view(), name='organizer.customer.logout'),
]
organizer_patterns = [