Skip to content

Commit 58945e1

Browse files
committed
Finishing touches
1 parent 8278644 commit 58945e1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

launcher-csharp/Rooms/Controllers/CreateExternalFormFillSession.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,12 @@ public ActionResult ExportData(RoomDocumentModel roomDocumentModel)
117117
var externalFormFillSession = DocuSign.Rooms.Examples.CreateExternalFormFillSession.CreateSession(basePath,
118118
accessToken,
119119
accountId,
120-
new ExternalFormFillSessionForCreate(null, roomDocumentModel.RoomId, formIds, "https://localhost"));
120+
new ExternalFormFillSessionForCreate(null, roomDocumentModel.RoomId, formIds, "https://localhost:44333"));
121121

122122
this.ViewBag.h1 = this.CodeExampleText.ExampleName;
123123
this.ViewBag.message = this.CodeExampleText.ResultsPageText;
124124
this.ViewBag.Url = externalFormFillSession.Url;
125+
this.ViewBag.JsonUrl = externalFormFillSession.ToJson();
125126

126127
return this.View("embed");
127128
}

launcher-csharp/Rooms/Views/CreateExternalFormFillSession/Embed.cshtml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<h2>@ViewBag.h1</h2>
22
<p>@Html.Raw(ViewBag.message)</p>
3-
<iframe width = "1500" height="800" src="@ViewBag.Url">
3+
<code>
4+
@ViewBag.JsonUrl
5+
</code>
6+
<iframe width="1500" height="800" src="@ViewBag.Url">
47

58
</iframe>
69

0 commit comments

Comments
 (0)