Username passed into roles. Added initial roles store functionality. Updated user roles functionality to persist the member group.

This commit is contained in:
Emma Garland
2021-02-01 17:43:11 +00:00
parent 8caf2a0e62
commit 152ad9684c
10 changed files with 133 additions and 133 deletions

View File

@@ -54,7 +54,8 @@ namespace Umbraco.Tests.UnitTests.AutoFixture
.Customize(new ConstructorCustomization(typeof(PreviewController), new GreedyConstructorQuery()))
.Customize(new ConstructorCustomization(typeof(MemberController), new GreedyConstructorQuery()))
.Customize(new ConstructorCustomization(typeof(BackOfficeController), new GreedyConstructorQuery()))
.Customize(new ConstructorCustomization(typeof(BackOfficeUserManager), new GreedyConstructorQuery()));
.Customize(new ConstructorCustomization(typeof(BackOfficeUserManager), new GreedyConstructorQuery()))
.Customize(new ConstructorCustomization(typeof(MembersUserManager), new GreedyConstructorQuery()));
fixture.Customize(new AutoMoqCustomization());