mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
16 lines
381 B
C#
16 lines
381 B
C#
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());
|
|
}
|
|
}
|
|
} |