diff --git a/src/Api/Controllers/OrganizationUsersController.cs b/src/Api/Controllers/OrganizationUsersController.cs index 255efdc9e4..dd69f35ac7 100644 --- a/src/Api/Controllers/OrganizationUsersController.cs +++ b/src/Api/Controllers/OrganizationUsersController.cs @@ -51,7 +51,7 @@ public class OrganizationUsersController : Controller [HttpGet("{id}")] public async Task Get(string id, bool includeGroups = false) { - var organizationUser = await _organizationUserRepository.GetByIdWithCollectionsAsync(new Guid(id)); + var organizationUser = await _organizationUserRepository.GetDetailsByIdWithCollectionsAsync(new Guid(id)); if (organizationUser == null || !await _currentContext.ManageUsers(organizationUser.Item1.OrganizationId)) { throw new NotFoundException(); diff --git a/src/Api/Models/Response/Organizations/OrganizationUserResponseModel.cs b/src/Api/Models/Response/Organizations/OrganizationUserResponseModel.cs index 1ce055a869..7a82d6ee13 100644 --- a/src/Api/Models/Response/Organizations/OrganizationUserResponseModel.cs +++ b/src/Api/Models/Response/Organizations/OrganizationUserResponseModel.cs @@ -47,6 +47,7 @@ public class OrganizationUserResponseModel : ResponseModel Permissions = CoreHelpers.LoadClassFromJsonData(organizationUser.Permissions); ResetPasswordEnrolled = !string.IsNullOrEmpty(organizationUser.ResetPasswordKey); UsesKeyConnector = organizationUser.UsesKeyConnector; + HasMasterPassword = organizationUser.HasMasterPassword; } public string Id { get; set; } @@ -59,6 +60,7 @@ public class OrganizationUserResponseModel : ResponseModel public Permissions Permissions { get; set; } public bool ResetPasswordEnrolled { get; set; } public bool UsesKeyConnector { get; set; } + public bool HasMasterPassword { get; set; } } public class OrganizationUserDetailsResponseModel : OrganizationUserResponseModel @@ -70,6 +72,13 @@ public class OrganizationUserDetailsResponseModel : OrganizationUserResponseMode Collections = collections.Select(c => new SelectionReadOnlyResponseModel(c)); } + public OrganizationUserDetailsResponseModel(OrganizationUserUserDetails organizationUser, + IEnumerable collections) + : base(organizationUser, "organizationUserDetails") + { + Collections = collections.Select(c => new SelectionReadOnlyResponseModel(c)); + } + public IEnumerable Collections { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] diff --git a/src/Core/Models/Data/Organizations/OrganizationUsers/OrganizationUserUserDetails.cs b/src/Core/Models/Data/Organizations/OrganizationUsers/OrganizationUserUserDetails.cs index 1dbd0972a9..0da749cad5 100644 --- a/src/Core/Models/Data/Organizations/OrganizationUsers/OrganizationUserUserDetails.cs +++ b/src/Core/Models/Data/Organizations/OrganizationUsers/OrganizationUserUserDetails.cs @@ -26,6 +26,7 @@ public class OrganizationUserUserDetails : IExternal, ITwoFactorProvidersUser public string Permissions { get; set; } public string ResetPasswordKey { get; set; } public bool UsesKeyConnector { get; set; } + public bool HasMasterPassword { get; set; } public ICollection Groups { get; set; } = new List(); public ICollection Collections { get; set; } = new List(); diff --git a/src/Infrastructure.EntityFramework/Repositories/Queries/OrganizationUserUserViewQuery.cs b/src/Infrastructure.EntityFramework/Repositories/Queries/OrganizationUserUserViewQuery.cs index 2f36743dc0..95f6638171 100644 --- a/src/Infrastructure.EntityFramework/Repositories/Queries/OrganizationUserUserViewQuery.cs +++ b/src/Infrastructure.EntityFramework/Repositories/Queries/OrganizationUserUserViewQuery.cs @@ -31,6 +31,7 @@ public class OrganizationUserUserDetailsViewQuery : IQuery