File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo/Abp/MultiTenancy Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ public class AbpMultiTenancyOptions
44{
55 /// <summary>
66 /// A central point to enable/disable multi-tenancy.
7- /// Default: false.
7+ /// Default: false.
88 /// </summary>
99 public bool IsEnabled { get ; set ; }
1010
@@ -13,4 +13,10 @@ public class AbpMultiTenancyOptions
1313 /// Default: <see cref="MultiTenancyDatabaseStyle.Hybrid"/>.
1414 /// </summary>
1515 public MultiTenancyDatabaseStyle DatabaseStyle { get ; set ; } = MultiTenancyDatabaseStyle . Hybrid ;
16+
17+ /// <summary>
18+ /// User sharing strategy between tenants.
19+ /// Default: <see cref="TenantUserSharingStrategy.Isolated"/>.
20+ /// </summary>
21+ public TenantUserSharingStrategy UserSharingStrategy { get ; set ; } = TenantUserSharingStrategy . Isolated ;
1622}
Original file line number Diff line number Diff line change 1+ namespace Volo . Abp . MultiTenancy ;
2+
3+ public enum TenantUserSharingStrategy
4+ {
5+ Isolated = 0 ,
6+
7+ Shared = 1
8+ }
You can’t perform that action at this time.
0 commit comments