13 lines
326 B
C#
13 lines
326 B
C#
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
using zero.Routing;
|
||
|
|
|
||
|
|
namespace zero.Web;
|
||
|
|
|
||
|
|
public class ZeroFallbackController : ZeroController<PageRoute>
|
||
|
|
{
|
||
|
|
public IActionResult Index()
|
||
|
|
{
|
||
|
|
return Json(new { Application, Route }, new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.None });
|
||
|
|
}
|
||
|
|
}
|