20 lines
516 B
C#
20 lines
516 B
C#
using System.Web.Mvc;
|
|
using Kreta.BusinessLogic.Security;
|
|
using Kreta.Resources;
|
|
using Kreta.Web.Security;
|
|
|
|
namespace Kreta.Web.Areas.GRModul.Controllers
|
|
{
|
|
[MvcRoleClaimsAuthorize(true)]
|
|
[MvcRolePackageAuthorize(KretaClaimPackages.Adminisztrator.ClaimValue)]
|
|
public class TargyiEszkozokController : Controller
|
|
{
|
|
|
|
public ActionResult Index()
|
|
{
|
|
ViewData[GRModulResource.IntezmenyAzonositoKey] = ClaimData.IntezmenyAzonosito;
|
|
return View();
|
|
}
|
|
|
|
}
|
|
}
|