We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f65fa commit 1f2808eCopy full SHA for 1f2808e
2 files changed
app/docusign/views.py
@@ -78,16 +78,12 @@ def ds_callback():
78
@ds.route("/must_authenticate")
79
def ds_must_authenticate():
80
if DS_CONFIG["quickstart"] == "true" and EXAMPLES_API_TYPE['ESignature']:
81
- return redirect(url_for("ds.ds_quickstart_auth"))
+ session["auth_type"] = "code_grant"
82
+ return redirect(url_for("ds.ds_login"))
83
else:
84
return render_template("must_authenticate.html", title="Must authenticate")
85
86
-@ds.route("/quickstart_auth")
87
-def ds_quickstart_auth():
88
- return render_template("quickstart_auth.html", title="Must authenticate")
89
-
90
91
@ds.route("/ds_return")
92
def ds_return():
93
event = request.args.get("event")
app/templates/quickstart_auth.html
0 commit comments