kreta/KretaWeb/Areas/GRModul/Controllers/ProjektController.cs
2024-03-13 00:33:46 +01:00

18 lines
476 B
C#

using System.Web.Mvc;
using Kreta.BusinessLogic.Security;
using Kreta.Web.Areas.GRModul.Models;
using Kreta.Web.Security;
namespace Kreta.Web.Areas.GRModul.Controllers
{
[MvcRoleClaimsAuthorize(true)]
[MvcRolePackageAuthorize(KretaClaimPackages.Naplo.ClaimValue)]
public class ProjektController : Controller
{
public ActionResult Index()
{
var model = new ProjektSearchModel();
return View(model);
}
}
}