maliming
4 years ago
No known key found for this signature in database
GPG Key ID: 96224957E51C89E
2 changed files with
4 additions and
1 deletions
-
docs/en/Multi-Tenancy.md
-
framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/AbpAspNetCoreMultiTenancyOptions.cs
|
|
|
@ -45,7 +45,7 @@ Configure<AbpMultiTenancyOptions>(options => |
|
|
|
{ |
|
|
|
// Handle the exception. |
|
|
|
|
|
|
|
//return true to stop the pipeline false to continue. |
|
|
|
// Return true to stop the pipeline, false to continue. |
|
|
|
return true; |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
@ -16,6 +16,9 @@ public class AbpAspNetCoreMultiTenancyOptions |
|
|
|
/// </summary>
|
|
|
|
public string TenantKey { get; set; } |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Return true to stop the pipeline, false to continue.
|
|
|
|
/// </summary>
|
|
|
|
public Func<HttpContext, Exception, Task<bool>> MultiTenancyMiddlewareErrorPageBuilder { get; set; } |
|
|
|
|
|
|
|
public AbpAspNetCoreMultiTenancyOptions() |
|
|
|
|