users API start

This commit is contained in:
2021-12-26 01:42:21 +01:00
parent 0bd2000026
commit ffdb0c190d
42 changed files with 465 additions and 494 deletions
+1 -2
View File
@@ -1,5 +1,4 @@
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using zero.Routing;
namespace zero.Web;
@@ -8,6 +7,6 @@ public class ZeroFallbackController : ZeroController<PageRoute>
{
public IActionResult Index()
{
return Json(new { Application, Route }, new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.None });
return Json(new { Application, Route });
}
}