mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-24 18:04:55 +08:00
24 lines
594 B
C#
24 lines
594 B
C#
using System.Web.Mvc;
|
|
|
|
namespace OpenAuth.Mvc.Areas.FlowManage
|
|
{
|
|
public class FlowManageAreaRegistration : AreaRegistration
|
|
{
|
|
public override string AreaName
|
|
{
|
|
get
|
|
{
|
|
return "FlowManage";
|
|
}
|
|
}
|
|
|
|
public override void RegisterArea(AreaRegistrationContext context)
|
|
{
|
|
context.MapRoute(
|
|
"FlowManage_default",
|
|
"FlowManage/{controller}/{action}/{id}",
|
|
new { action = "Index", id = UrlParameter.Optional }
|
|
);
|
|
}
|
|
}
|
|
} |