forked from MarseyWorld/MarseyWorld
parent
544af2d8e5
commit
2cf55bc19c
|
@ -356,6 +356,9 @@ def gumroad(v):
|
||||||
tier = tiers[response["variants_and_quantity"]]
|
tier = tiers[response["variants_and_quantity"]]
|
||||||
if v.patron == tier: return {"error": f"{patron} rewards already claimed"}, 400
|
if v.patron == tier: return {"error": f"{patron} rewards already claimed"}, 400
|
||||||
|
|
||||||
|
procoins = procoins_li[tier] - procoins_li[v.patron]
|
||||||
|
if procoins < 0: return {"error": f"{patron} rewards already claimed"}, 400
|
||||||
|
|
||||||
existing = g.db.query(User.id).filter(User.email == v.email, User.is_activated == True, User.patron >= tier).first()
|
existing = g.db.query(User.id).filter(User.email == v.email, User.is_activated == True, User.patron >= tier).first()
|
||||||
if existing: return {"error": f"{patron} rewards already claimed on another account"}, 400
|
if existing: return {"error": f"{patron} rewards already claimed on another account"}, 400
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue