19 lines
639 B
C#
19 lines
639 B
C#
using System.Web.Mvc;
|
|
using Kreta.BusinessLogic.Security;
|
|
using Kreta.Web.Areas.Tanulo.Models;
|
|
using Kreta.Web.Security;
|
|
|
|
namespace Kreta.Web.Areas.Tanulo.Controllers
|
|
{
|
|
[MvcRoleClaimsAuthorize(true)]
|
|
[MvcRolePackageDenyAuthorize(KretaClaimPackages.IsOnlyAlkalmozott.ClaimValue)]
|
|
[MvcRolePackageAuthorize(KretaClaimPackages.Tanulo.ClaimValue, KretaClaimPackages.Gondviselo.ClaimValue)]
|
|
public class TanuloHaziFeladatController : Controller
|
|
{
|
|
// GET: Tanulo/TanuloHaziFeladat
|
|
public ActionResult Index()
|
|
{
|
|
return View("Index", new TanuloHaziFeladatSearchModel());
|
|
}
|
|
}
|
|
}
|