This commit is contained in:
Matěj Kubíček
2026-09-17 16:45:57 +02:00
parent dbfe7bced7
commit 2040a16879
109 changed files with 50 additions and 221 deletions
@@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace StuzkovakWeb.Areas.Admin.Controllers;
[Area("Admin")]
[Authorize(Roles = "Admin")]
public abstract class AdminBaseController : Controller
{
}