1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 18:12:48 -05:00

[PM-1033] refactor: UpdateUserResetPasswordEnrollmentCommand

This commit is contained in:
Andreas Coroiu
2023-06-29 11:32:50 +02:00
parent dc503b3035
commit 43df689c7f
6 changed files with 102 additions and 56 deletions

View File

@ -0,0 +1,7 @@
namespace Bit.Core.OrganizationFeatures.OrganizationUsers.Interfaces;
public interface IUpdateUserResetPasswordEnrollmentCommand
{
Task UpdateAsync(Guid organizationId, Guid userId, string resetPasswordKey, Guid? callingUserId);
}