18 lines
476 B
C#
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);
|
|
}
|
|
}
|
|
}
|