1
0
mirror of https://github.com/bitwarden/server synced 2026-01-30 00:03:48 +00:00

test(register): [PM-27084] Account Register Uses New Data Types - Fixed tests.

This commit is contained in:
Patrick Pimentel
2026-01-15 13:56:14 -05:00
parent f92d7d2bff
commit 6301dbfc5e

View File

@@ -29,7 +29,9 @@ internal class RegisterFinishRequestModelCustomization : ICustomization
.With(o => o.OrgInviteToken, OrgInviteToken)
.With(o => o.OrgSponsoredFreeFamilyPlanToken, OrgSponsoredFreeFamilyPlanToken)
.With(o => o.AcceptEmergencyAccessInviteToken, AcceptEmergencyAccessInviteToken)
.With(o => o.ProviderInviteToken, ProviderInviteToken));
.With(o => o.ProviderInviteToken, ProviderInviteToken)
.Without(o => o.MasterPasswordAuthentication)
.Without(o => o.MasterPasswordUnlock));
}
}