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.
40 lines
1.0 KiB
40 lines
1.0 KiB
namespace Lion.AbpPro
|
|
{
|
|
public static class AbpProHttpApiHostConst
|
|
{
|
|
/// <summary>
|
|
/// 跨域策略名
|
|
/// </summary>
|
|
public const string DefaultCorsPolicyName = "Default";
|
|
|
|
/// <summary>
|
|
/// Cookies名称
|
|
/// </summary>
|
|
public const string DefaultCookieName = "Lion.AbpPro.Http.Api";
|
|
|
|
/// <summary>
|
|
/// SwaggerUi 端点
|
|
/// </summary>
|
|
public const string SwaggerUiEndPoint = "/swagger";
|
|
|
|
/// <summary>
|
|
/// Hangfire 端点
|
|
/// </summary>
|
|
public const string HangfireDashboardEndPoint = "/hangfire";
|
|
|
|
/// <summary>
|
|
/// CAP 端点
|
|
/// </summary>
|
|
public const string CapDashboardEndPoint = "/cap";
|
|
|
|
|
|
public const string MoreEndPoint = "https://doc.cncore.club/";
|
|
|
|
|
|
/// <summary>
|
|
/// HMiniprofiler端点
|
|
/// </summary>
|
|
public const string MiniprofilerEndPoint = "/profiler/results-index";
|
|
|
|
}
|
|
}
|