mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
Apply suggestions from code review
Co-authored-by: Adrià Casajús <acasajus@users.noreply.github.com>
This commit is contained in:
parent
c21c3421b5
commit
6ce07f456f
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user