init
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.Web.Mvc;
|
||||
|
||||
namespace Kreta.Web.Areas.Adminisztracio
|
||||
{
|
||||
public class AdminisztracioAreaRegistration : AreaRegistration
|
||||
{
|
||||
public override string AreaName => "Adminisztracio";
|
||||
|
||||
public override void RegisterArea(AreaRegistrationContext context)
|
||||
{
|
||||
context.MapRoute(
|
||||
"Adminisztracio_default",
|
||||
"Adminisztracio/{controller}/{action}/{id}",
|
||||
new { action = "Index", id = UrlParameter.Optional }
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user