Skip to content

Commit b02ee7f

Browse files
committed
undone changes from PR #59 because it now works with latest Umbraco
1 parent e3daafa commit b02ee7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PSW/PSW/Controllers/ScriptGeneratorApiController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public ActionResult GenerateScript([FromBody] GeneratorApiRequest apiRequest)
2828
{
2929
if (apiRequest.IsEmpty)
3030
{
31-
apiRequest.IncludeStarterKit = false;
31+
apiRequest.IncludeStarterKit = true;
3232
apiRequest.CreateSolutionFile = true;
3333
apiRequest.UseUnattendedInstall = true;
3434
apiRequest.OnelinerOutput = false;

PSW/PSW/Services/QueryStringService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public PackagesViewModel LoadModelFromQueryString(HttpRequest request)
1414

1515
if (request.Query.Count == 0)
1616
{
17-
includeStarterKit = false;
17+
includeStarterKit = true;
1818
createSolutionFile = true;
1919
useUnattendedInstall = true;
2020
onelinerOutput = false;

0 commit comments

Comments
 (0)