Apply suggestions from code review

Co-authored-by: Adrià Casajús <acasajus@users.noreply.github.com>
This commit is contained in:
Son Nguyen Kim 2024-04-11 21:52:58 +02:00 committed by GitHub
parent c21c3421b5
commit 6ce07f456f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -230,14 +230,16 @@ def setting():
elif request.form.get("form-name") == "enable_data_breach_check": elif request.form.get("form-name") == "enable_data_breach_check":
if not current_user.is_premium(): if not current_user.is_premium():
flash( flash(
"Only premium plan can add enable data breach monitoring", "warning" "Only premium plan can enable data breach monitoring", "warning"
) )
return redirect(url_for("dashboard.setting")) return redirect(url_for("dashboard.setting"))
choose = request.form.get("enable_data_breach_check") choose = request.form.get("enable_data_breach_check")
if choose == "on": if choose == "on":
LOG.i("User {current_user} has enabled data breach monitoring")
current_user.enable_data_breach_check = True current_user.enable_data_breach_check = True
flash("Data breach monitoring is enabled", "success") flash("Data breach monitoring is enabled", "success")
else: else:
LOG.i("User {current_user} has disabled data breach monitoring")
current_user.enable_data_breach_check = False current_user.enable_data_breach_check = False
flash("Data breach monitoring is disabled", "info") flash("Data breach monitoring is disabled", "info")
Session.commit() Session.commit()