clean
This commit is contained in:
parent
9522e92781
commit
acbe778197
|
@ -171,9 +171,10 @@ class AllowCodeView(View):
|
||||||
code=code,
|
code=code,
|
||||||
code_used=False
|
code_used=False
|
||||||
)
|
)
|
||||||
if not self.authorization.promotions.exists():
|
|
||||||
|
promotion = self.authorization.promotions.first()
|
||||||
|
if not promotion:
|
||||||
raise Http404("Page not Found!")
|
raise Http404("Page not Found!")
|
||||||
|
|
||||||
promotion = self.authorization.promotions.all()[0]
|
|
||||||
return redirect(promotion.get_url(code))
|
return redirect(promotion.get_url(code))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue