Skip to content

Commit 464b27f

Browse files
authored
Merge pull request #138 from docusign/DEVDOCS-11932
DEVDOCS-11932 - separating step5 of Rooms9 and adding the marker for it
2 parents 77bc06d + 018cc0b commit 464b27f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

launcher-csharp/Rooms/Controllers/AssignFormToFormGroups.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,16 @@ public ActionResult AssignFormToFormGroup(FormFormGroupModel formFormGroupModel)
7878

7979
try
8080
{
81+
//ds-snippet-start:Rooms9Step5
82+
var form = new FormGroupFormToAssign() { FormId = formFormGroupModel.FormId };
83+
//ds-snippet-start:Rooms9Step5
8184
// Call the Rooms API to assign form to form group
8285
var formGroupFormToAssign = DocuSign.Rooms.Examples.AssignFormToFormGroups.AssignForm(
8386
basePath,
8487
accessToken,
8588
accountId,
8689
formFormGroupModel.FormGroupId,
87-
new FormGroupFormToAssign() { FormId = formFormGroupModel.FormId });
90+
form);
8891

8992
this.ViewBag.h1 = this.CodeExampleText.ExampleName;
9093
this.ViewBag.message = string.Format(

0 commit comments

Comments
 (0)