Skip to content

Commit df3b38a

Browse files
committed
changes to run quickstart correctly
1 parent 9a850c5 commit df3b38a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

app/docusign/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def ds_return():
9090
event = request.args.get("event")
9191
state = request.args.get("state")
9292
envelope_id = request.args.get("envelopeId")
93+
DS_CONFIG["quickstart"] = "false"
9394
return render_template(
9495
"ds_return.html",
9596
title="Return from DocuSign",

app/views.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,14 @@ def index():
2020
# )
2121
if DS_CONFIG["quickstart"] == "true":
2222
return redirect(url_for("core.qshome"))
23+
2324
else:
2425
return render_template("home.html", title="Home - Python Code Examples")
2526

2627

27-
@core.route("/quickstarthome")
28+
@core.route("/eg001")
2829
def qshome():
29-
return render_template("quickstarthome.html", title = "Homepage for Quickstart")
30+
return render_template("eg001_embedded_signing.html", title = "Homepage for Quickstart")
3031

3132

3233
@core.route("/index")

0 commit comments

Comments
 (0)