Skip to content

Commit dc22cbe

Browse files
committed
Merge branch 'feature/added-text-to-manifest' of https://github.com/docusign/code-examples-csharp-private into feature/added-text-to-manifest
2 parents 4be0e3a + 0152c6d commit dc22cbe

File tree

4 files changed

+43
-40
lines changed

4 files changed

+43
-40
lines changed

Quick_ACG/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ public static IWebHostBuilder CreateWebHostBuilder(string[] args)
2828
{
2929
path = Path.GetFullPath(@"..\\launcher-csharp\\appsettings.json");
3030
}
31-
31+
3232

3333
config.AddJsonFile(path,
34-
optional: false,
35-
reloadOnChange: true);
34+
optional: false,
35+
reloadOnChange: true);
3636
});
3737
return builder;
3838
}

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ steps:
107107
command: build
108108
repository: 'launcher-automation-csharp'
109109
dockerfile: '$(Build.SourcesDirectory)/code-examples-csharp-private/Dockerfile'
110-
buildContext: '$(Build.SourcesDirectory)/code-examples-csharp-private '
110+
buildContext: '$(Build.SourcesDirectory)/code-examples-csharp-private'
111111
tags: |
112112
latest
113113

launcher-csharp/Views/Home/Index.cshtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
<input type="text" class="form-control" id="code_example_search" placeholder="Search for code example">
3131
</div>
3232

33-
3433
<div id="api_json_data" class="hidden">@ViewBag.APIData</div>
3534
<div id="cfr11_data" class="hidden">@ViewBag.CFRPart11</div>
3635

manifest/CodeExamplesManifest.json

Lines changed: 39 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1891,41 +1891,45 @@
18911891
"SkipForLanguages": "bash;powershell"
18921892
}
18931893
]
1894-
},
1895-
{
1896-
"Name":"WebForms",
1897-
"Groups":[
1898-
{
1899-
"Name":"Web forms",
1900-
"Examples":[
1901-
{
1902-
"ExampleNumber":1,
1903-
"ExampleName":"Create and embed an instance of a web form",
1904-
"ExampleDescription":"Creates an instance of a web form and embeds it on an HTML page.",
1905-
"LinksToAPIMethod":[
1906-
{
1907-
"Path":"",
1908-
"PathName":"WebForms:ListWebForms"
1909-
},
1910-
{
1911-
"Path":"",
1912-
"PathName":"WebForms:CreateInstance"
1913-
}
1914-
],
1915-
"AdditionalPage":[
1916-
{
1917-
"Name":"create_web_form_template",
1918-
"ResultsPageText":"First the launcher will create a new template in your account that will be used to create the web form."
1919-
},
1920-
{
1921-
"Name":"create_web_form",
1922-
"ResultsPageText":"Go to your Docusign account to create the Web Form. Go to 'Templates' in your developer account, select 'Start,' select 'Web Forms,' and choose 'Upload Web Form.' Upload the JSON config file 'web-form-config.json' found under the {0} folder of this project. You will need to activate the web form before proceeding. Press Continue after doing so."
1923-
}
1924-
]
1925-
}
1926-
]
1927-
}
1928-
]
1894+
}
1895+
]
1896+
},
1897+
{
1898+
"Name":"WebForms",
1899+
"Groups":[
1900+
{
1901+
"Name":"Web forms",
1902+
"Examples":[
1903+
{
1904+
"ExampleNumber":1,
1905+
"ExampleName":"Create and embed an instance of a web form",
1906+
"ExampleDescription":"Creates an instance of a web form and embeds it on an HTML page.",
1907+
"LinksToAPIMethod":[
1908+
{
1909+
"Path":"",
1910+
"PathName":"WebForms:ListWebForms"
1911+
},
1912+
{
1913+
"Path":"",
1914+
"PathName":"WebForms:CreateInstance"
1915+
}
1916+
],
1917+
"AdditionalPage":[
1918+
{
1919+
"Name":"create_web_form_template",
1920+
"ResultsPageText":"First the launcher will create a new template in your account that will be used to create the web form."
1921+
},
1922+
{
1923+
"Name":"create_web_form",
1924+
"ResultsPageText":"Go to your Docusign account to create the Web Form. Go to 'Templates' in your developer account, select 'Start,' select 'Web Forms,' and choose 'Upload Web Form.' Upload the JSON config file 'web-form-config.json' found under the {0} folder of this project. You will need to activate the web form before proceeding. Press Continue after doing so."
1925+
},
1926+
{
1927+
"Name":"webforms_heading",
1928+
"ResultsPageText": "The webform has been embedded below using the Docusign JS library."
1929+
}
1930+
]
1931+
}
1932+
]
19291933
}
19301934
]
19311935
},

0 commit comments

Comments
 (0)