start first steps

This commit is contained in:
2020-03-30 17:11:56 +02:00
parent 2d2f00bcfd
commit f9c6a4e187
16 changed files with 430 additions and 74 deletions
+8
View File
@@ -1,6 +1,8 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using zero.Core;
using zero.Core.Entities.Setup;
using zero.Web.Controllers;
namespace zero.Web.Setup
@@ -17,5 +19,11 @@ namespace zero.Web.Setup
{
return View("/Views/Setup.cshtml");
}
[HttpPost]
public async Task<IActionResult> Save(SetupSave model)
{
return Ok();
}
}
}