fdfd
This commit is contained in:
parent
60975aaeb8
commit
7448d719cd
3 changed files with 11 additions and 12 deletions
|
@ -327,7 +327,11 @@ function post_toast(url, callback, data) {
|
|||
if (xhr.status >= 200 && xhr.status < 300) {
|
||||
$('#toast-post-success').toast('dispose');
|
||||
$('#toast-post-success').toast('show');
|
||||
try {
|
||||
document.getElementById('toast-post-success-text').innerText = JSON.parse(xhr.response)["message"];
|
||||
} catch(e) {
|
||||
document.getElementById('toast-post-success-text').innerText = "Action successful!";
|
||||
}
|
||||
callback(xhr)
|
||||
return true
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ def themecolor(v):
|
|||
g.db.add(v)
|
||||
return redirect("/settings/profile")
|
||||
|
||||
@app.get("/settings/gumroad")
|
||||
@app.post("/settings/gumroad")
|
||||
@auth_required
|
||||
@validate_formkey
|
||||
def gumroad(v):
|
||||
|
@ -221,16 +221,13 @@ def gumroad(v):
|
|||
response = requests.get('https://api.gumroad.com/v2/sales', data=data).json()["sales"]
|
||||
|
||||
if len(response) == 0:
|
||||
return render_template("settings_profile.html",
|
||||
v=v,
|
||||
error="Email not found")
|
||||
return jsonify({"error": "Email not found"})
|
||||
|
||||
response = response[0]
|
||||
tier = tiers[response["variants_and_quantity"]]
|
||||
if v.patron == tier:
|
||||
return render_template("settings_profile.html",
|
||||
v=v,
|
||||
error="Patron status already verified")
|
||||
return jsonify({"error": "Patron rewards already claimed"})
|
||||
|
||||
v.patron = tier
|
||||
|
||||
grant_awards = {}
|
||||
|
@ -267,9 +264,7 @@ def gumroad(v):
|
|||
g.db.bulk_save_objects(_awards)
|
||||
|
||||
g.db.add(v)
|
||||
return render_template("settings_profile.html",
|
||||
v=v,
|
||||
msg="Patron status verified!")
|
||||
return jsonify({"message": "Patron rewards claimed"})
|
||||
|
||||
@app.post("/settings/titlecolor")
|
||||
@auth_required
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
<div class="footer">
|
||||
|
||||
<div class="d-flex">
|
||||
<a class="btn btn-success" href="/settings/gumroad">Claim patron rewards</a>
|
||||
<a class="btn btn-success" href="javascript:void(0)" onclick="post_toast('/settings/gumroad')">Claim patron rewards</a>
|
||||
{% if v.email %}
|
||||
<input class="btn btn-primary ml-auto"
|
||||
type="submit" value="Update email">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue