mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
c2bb6488e4
* Allow to login with proton to enter sudo mode * Updated wording * lint * Only enabled if the user has the account linked * Add exit-sudo route for tests Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
11 lines
272 B
Python
11 lines
272 B
Python
from flask import session, redirect, url_for, flash
|
|
|
|
from app.internal.base import internal_bp
|
|
|
|
|
|
@internal_bp.route("/exit-sudo-mode")
|
|
def exit_sudo_mode():
|
|
session["sudo_time"] = 0
|
|
flash("Exited sudo mode", "info")
|
|
return redirect(url_for("dashboard.index"))
|