init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,23 @@
|
|||
using System.Web.Mvc;
|
||||
using Kreta.BusinessLogic.Helpers;
|
||||
using Kreta.BusinessLogic.Security;
|
||||
using Kreta.Web.Areas.TanuloErtekeles.Models;
|
||||
using Kreta.Web.Helpers;
|
||||
using Kreta.Web.Security;
|
||||
|
||||
namespace Kreta.Web.Areas.TanuloErtekeles.Controllers
|
||||
{
|
||||
[MvcRoleClaimsAuthorize(true)]
|
||||
[MvcRolePackageDenyAuthorize(KretaClaimPackages.IsOnlyAlkalmozott.ClaimValue)]
|
||||
[MvcRolePackageAuthorize(KretaClaimPackages.Ellenorzo.ClaimValue)]
|
||||
public class OsztalyzatokController : Controller
|
||||
{
|
||||
public ActionResult Index()
|
||||
{
|
||||
OsztalyzatokRequestModel model = new OsztalyzatokRequestModel();
|
||||
model.OktatasNevelesiFeladatIdList = new TanuloHelper(ConnectionTypeExtensions.GetSessionConnectionType()).GetTanuloOktatasiNevelesiFeladatIdList(ClaimData.FelhasznaloId);
|
||||
model.IsOsztalyAtlagMegjelenik = true;
|
||||
return View(model);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue