Log on/off works; WIP on layout

This commit is contained in:
2022-02-27 16:15:35 -05:00
parent df3467030a
commit 39e0d5ec8b
22 changed files with 573 additions and 32 deletions

View File

@@ -0,0 +1,19 @@
using Microsoft.AspNetCore.Mvc;
namespace MyWebLog.Features.Admin;
/// <summary>
/// Controller for admin-specific displays and routes
/// </summary>
[Route("/admin")]
public class AdminController : MyWebLogController
{
/// <inheritdoc />
public AdminController(WebLogDbContext db) : base(db) { }
[HttpGet("")]
public IActionResult Index()
{
return View();
}
}