mirror of https://github.com/abpframework/abp.git
4 changed files with 44 additions and 11 deletions
@ -0,0 +1,15 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Uow |
|||
{ |
|||
public class AbpAspNetCoreUnitOfWorkOptions |
|||
{ |
|||
/// <summary>
|
|||
/// This is used to disable the <see cref="AbpUnitOfWorkMiddleware"/>,
|
|||
/// app.UseUnitOfWork(), for the specified URLs.
|
|||
/// <see cref="AbpUnitOfWorkMiddleware"/> will be disabled for URLs
|
|||
/// starting with an ignored URL.
|
|||
/// </summary>
|
|||
public List<string> IgnoredUrls { get; } = new List<string>(); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue