mirror of
https://github.com/pretix/pretix.git
synced 2026-05-21 17:54:08 +00:00
add customer to context in CustomerRequiredMixin
This commit is contained in:
@@ -339,6 +339,11 @@ class ResetPasswordView(FormView):
|
|||||||
|
|
||||||
|
|
||||||
class CustomerRequiredMixin:
|
class CustomerRequiredMixin:
|
||||||
|
def get_context_data(self, **kwargs):
|
||||||
|
ctx = super().get_context_data(**kwargs)
|
||||||
|
ctx['customer'] = self.request.customer
|
||||||
|
return ctx
|
||||||
|
|
||||||
def dispatch(self, request, *args, **kwargs):
|
def dispatch(self, request, *args, **kwargs):
|
||||||
if not request.organizer.settings.customer_accounts:
|
if not request.organizer.settings.customer_accounts:
|
||||||
raise Http404('Feature not enabled')
|
raise Http404('Feature not enabled')
|
||||||
|
|||||||
Reference in New Issue
Block a user