add missing model to CoinifyCallbackView
This commit is contained in:
parent
a46480c960
commit
a6b50c79fc
|
@ -382,6 +382,8 @@ class CoinifyRedirectView(LoginRequiredMixin, EnsureUserOwnsOrderMixin, EnsureUn
|
||||||
|
|
||||||
|
|
||||||
class CoinifyCallbackView(SingleObjectMixin, View):
|
class CoinifyCallbackView(SingleObjectMixin, View):
|
||||||
|
model = Order
|
||||||
|
|
||||||
@method_decorator(csrf_exempt)
|
@method_decorator(csrf_exempt)
|
||||||
def dispatch(self, *args, **kwargs):
|
def dispatch(self, *args, **kwargs):
|
||||||
return super(CoinifyCallbackView, self).dispatch(*args, **kwargs)
|
return super(CoinifyCallbackView, self).dispatch(*args, **kwargs)
|
||||||
|
|
Loading…
Reference in a new issue