mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Routing;
|
|
using Volo.Abp.GlobalFeatures;
|
|
using Volo.CmsKit.GlobalFeatures;
|
|
using Volo.CmsKit.Public.Web.Pages;
|
|
|
|
namespace Volo.CmsKit.Public.Web;
|
|
|
|
public static class CmsKitPagesConfigurationExtensions
|
|
{
|
|
/// <summary>
|
|
/// Maps CMS Kit to the routing.
|
|
/// </summary>
|
|
/// <param name="builder"></param>
|
|
/// <param name="order">The matching order for the dynamic route. Lower is prior.</param>
|
|
public static IEndpointRouteBuilder MapCmsPageRoute(this IEndpointRouteBuilder builder, int? order = null)
|
|
{
|
|
if (!GlobalFeatureManager.Instance.IsEnabled<PagesFeature>())
|
|
{
|
|
return builder;
|
|
}
|
|
|
|
builder
|
|
.MapDynamicPageRoute<CmsKitHomePageRouteValueTransformer>("/", state: null, order: int.MinValue);
|
|
|
|
if (order is null)
|
|
{
|
|
builder
|
|
.MapDynamicPageRoute<CmsKitPageRouteValueTransformer>("{**slug}");
|
|
}
|
|
else
|
|
{
|
|
builder
|
|
.MapDynamicPageRoute<CmsKitPageRouteValueTransformer>("{**slug}", state: default, order: order.Value);
|
|
}
|
|
|
|
return builder;
|
|
}
|
|
}
|
|
|