mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 08:38:31 +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 }
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|