We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb856dd commit 9dbc682Copy full SHA for 9dbc682
1 file changed
app/quick_acg/quick_acg_app/views.py
@@ -74,6 +74,15 @@ def ds_must_authenticate():
74
session["auth_type"] = "code_grant"
75
return redirect(url_for("ds.ds_login"))
76
77
+@ds.route("/logout")
78
+def ds_logout():
79
+ ds_logout_internal()
80
+ flash("You have logged out from DocuSign.")
81
+ app.config["isLoggedIn"] = False
82
+ app.config["quickstart"] = False
83
+
84
+ return redirect(url_for("core.index"))
85
86
@ds.route("/ds_return")
87
def ds_return():
88
return redirect(url_for("core.index"))
0 commit comments