start implementation of configuration via webfront

This commit is contained in:
RaidMax
2019-03-30 22:04:15 -05:00
parent 37d3f4f90d
commit 9393b35c39
10 changed files with 262 additions and 17 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace WebfrontCore.Controllers
{
public class ConfigurationController : BaseController
{
public IActionResult Edit()
{
return View("Index", Manager.GetApplicationSettings().Configuration());
}
}
}