Open Source Web Application Framework for ASP.NET Core
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.
 
 
 
 
 
 

48 lines
1.3 KiB

using System;
using System.Collections.Generic;
namespace Volo.Blogging
{
public class BloggingUrlOptions
{
private string _routePrefix = "blog";
/// <summary>
/// Default value: "blog";
/// </summary>
public string RoutePrefix
{
get => GetFormattedRoutePrefix();
set => _routePrefix = value;
}
/// <summary>
/// Used to specify ignore paths if the route prefix is null or empty.
/// </summary>
public List<string> IgnoredPaths { get; } = new ();
public SingleBlogModeOptions SingleBlogMode { get; } = new ();
private string GetFormattedRoutePrefix()
{
if (string.IsNullOrWhiteSpace(_routePrefix))
{
return "/";
}
return _routePrefix.EnsureEndsWith('/').EnsureStartsWith('/');
}
}
public class SingleBlogModeOptions
{
/// <summary>
/// Determines whether to enable single blog mode by removing the blog name from the routing.
/// When enabled, only a single blog is allowed within the module.
/// </summary>
public bool Enabled { get; set; }
public string BlogName { get; set; }
}
}