2020-03-25 23:24:58 +01:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using zero.Core;
|
|
|
|
|
using zero.Web.Controllers;
|
|
|
|
|
|
|
|
|
|
namespace zero.Web.Setup
|
|
|
|
|
{
|
|
|
|
|
[AllowAnonymous]
|
|
|
|
|
public class SetupController : BackofficeController
|
|
|
|
|
{
|
|
|
|
|
public SetupController(IZeroConfiguration config) : base(config)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Index()
|
|
|
|
|
{
|
2020-03-26 22:14:16 +01:00
|
|
|
return View("/Views/Setup.cshtml");
|
2020-03-25 23:24:58 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|