diff --git a/src/App/Pages/Accounts/SetPasswordPageViewModel.cs b/src/App/Pages/Accounts/SetPasswordPageViewModel.cs index 6f1f4f47e..6172f2595 100644 --- a/src/App/Pages/Accounts/SetPasswordPageViewModel.cs +++ b/src/App/Pages/Accounts/SetPasswordPageViewModel.cs @@ -102,7 +102,7 @@ namespace Bit.App.Pages { var response = await _apiService.GetOrganizationAutoEnrollStatusAsync(OrgIdentifier); OrgId = response.Id; - ResetPasswordAutoEnroll = response.ResetPasswordEnrolled; + ResetPasswordAutoEnroll = response.ResetPasswordEnabled; } catch (ApiException e) { diff --git a/src/Core/Models/Response/OrganizationAutoEnrollStatusResponse.cs b/src/Core/Models/Response/OrganizationAutoEnrollStatusResponse.cs index 7f5e4a013..c766a82ff 100644 --- a/src/Core/Models/Response/OrganizationAutoEnrollStatusResponse.cs +++ b/src/Core/Models/Response/OrganizationAutoEnrollStatusResponse.cs @@ -3,6 +3,6 @@ namespace Bit.Core.Models.Response public class OrganizationAutoEnrollStatusResponse { public string Id { get; set; } - public bool ResetPasswordEnrolled { get; set; } + public bool ResetPasswordEnabled { get; set; } } }