Skip to content

Commit

Permalink
Merge pull request #8120 from abpframework/enisn/cms-kit/cmsuser-mode…
Browse files Browse the repository at this point in the history
…lcreating-fix

CmsKit - CmsUser ModelCreating fix
  • Loading branch information
cotur committed Mar 18, 2021
2 parents f6ab71d + a8f1095 commit 0ecaff9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ public static class CmsKitDbContextModelCreatingExtensions
b.HasIndex(x => new { x.TenantId, x.Email });
});
}
else
{
builder.Ignore<CmsUser>();
}

if (GlobalFeatureManager.Instance.IsEnabled<ReactionsFeature>())
{
Expand Down

0 comments on commit 0ecaff9

Please sign in to comment.