start implementation of configuration via webfront
This commit is contained in:
16
WebfrontCore/Controllers/ConfigurationController.cs
Normal file
16
WebfrontCore/Controllers/ConfigurationController.cs
Normal 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());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user