OpenAuth.Net/OpenAuth.WebApi/Areas/SSO/SSOAreaRegistration.cs
2016-07-08 11:28:38 +08:00

24 lines
562 B
C#

using System.Web.Mvc;
namespace OpenAuth.WebApi.Areas.SSO
{
public class SSOAreaRegistration : AreaRegistration
{
public override string AreaName
{
get
{
return "SSO";
}
}
public override void RegisterArea(AreaRegistrationContext context)
{
context.MapRoute(
"SSO_default",
"SSO/{controller}/{action}/{id}",
new { action = "Index", id = UrlParameter.Optional }
);
}
}
}