Browse Source
Merge pull request #15826 from abpframework/IgnoredTypes_AbpAuditingOptions
pull/16074/head
liangshiwei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
framework/src/Volo.Abp.Auditing/Volo/Abp/Auditing/AbpAuditingOptions.cs
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.IO; |
|
|
|
using System.Linq.Expressions; |
|
|
|
using System.Threading; |
|
|
|
using System.Threading.Tasks; |
|
|
|
|
|
|
|
namespace Volo.Abp.Auditing; |
|
|
|
@ -76,7 +77,8 @@ public class AbpAuditingOptions |
|
|
|
IgnoredTypes = new List<Type> |
|
|
|
{ |
|
|
|
typeof(Stream), |
|
|
|
typeof(Expression) |
|
|
|
typeof(Expression), |
|
|
|
typeof(CancellationToken) |
|
|
|
}; |
|
|
|
|
|
|
|
EntityHistorySelectors = new EntityHistorySelectorList(); |
|
|
|
|