1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-11 16:18:14 -05:00

[Reset Password] Fixed helper utility for org user updates (#1382)

This commit is contained in:
Vincent Salucci 2021-06-08 12:29:56 -05:00 committed by GitHub
parent f6236bea6f
commit 30611bd78b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,7 @@ namespace Bit.Core.Utilities
(nameof(OrganizationUser.CreationDate), typeof(DateTime), ou => ou.CreationDate),
(nameof(OrganizationUser.RevisionDate), typeof(DateTime), ou => ou.RevisionDate),
(nameof(OrganizationUser.Permissions), typeof(string), ou => ou.Permissions),
(nameof(OrganizationUser.ResetPasswordKey), typeof(Guid), ou => ou.UserId),
(nameof(OrganizationUser.ResetPasswordKey), typeof(string), ou => ou.ResetPasswordKey),
};
foreach (var (name, type, getter) in columnData)