forked from rDrama/rDrama
1
0
Fork 0

use get_msg() in /profile_css

master
Aevann 2023-01-27 12:04:30 +02:00
parent 4c9181e0b1
commit 15a9d53ba6
1 changed files with 2 additions and 2 deletions

View File

@ -604,7 +604,7 @@ def settings_images_banner(v):
@limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID) @limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID)
@auth_required @auth_required
def settings_css_get(v:User): def settings_css_get(v:User):
return render_template("settings/css.html", v=v) return render_template("settings/css.html", v=v, msg=get_msg(), profilecss=v.profilecss)
@app.post("/settings/css") @app.post("/settings/css")
@limiter.limit(DEFAULT_RATELIMIT_SLOWER) @limiter.limit(DEFAULT_RATELIMIT_SLOWER)
@ -629,7 +629,7 @@ def settings_profilecss(v):
return render_template("settings/css.html", error=error, v=v, profilecss=profilecss) return render_template("settings/css.html", error=error, v=v, profilecss=profilecss)
v.profilecss = profilecss v.profilecss = profilecss
g.db.add(v) g.db.add(v)
return render_template("settings/css.html", v=v, msg="Profile CSS successfully updated!", profilecss=v.profilecss) return redirect("/settings/css?msg=Profile CSS successfully updated!")
@app.get("/settings/security") @app.get("/settings/security")
@limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID) @limiter.limit(DEFAULT_RATELIMIT, key_func=get_ID)