Skip to content

Commit 1f2808e

Browse files
committed
skip authentication menu for qs
1 parent b8f65fa commit 1f2808e

2 files changed

Lines changed: 2 additions & 29 deletions

File tree

app/docusign/views.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,12 @@ def ds_callback():
7878
@ds.route("/must_authenticate")
7979
def ds_must_authenticate():
8080
if DS_CONFIG["quickstart"] == "true" and EXAMPLES_API_TYPE['ESignature']:
81-
return redirect(url_for("ds.ds_quickstart_auth"))
81+
session["auth_type"] = "code_grant"
82+
return redirect(url_for("ds.ds_login"))
8283
else:
8384
return render_template("must_authenticate.html", title="Must authenticate")
8485

8586

86-
@ds.route("/quickstart_auth")
87-
def ds_quickstart_auth():
88-
return render_template("quickstart_auth.html", title="Must authenticate")
89-
90-
9187
@ds.route("/ds_return")
9288
def ds_return():
9389
event = request.args.get("event")

app/templates/quickstart_auth.html

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)