mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Add usesKeyConnector to organizationUserUserDetailsResponseModel (#1726)
This commit is contained in:
parent
cfd6123974
commit
be164967b3
@ -41,6 +41,7 @@ namespace Bit.Core.Models.Api
|
|||||||
AccessAll = organizationUser.AccessAll;
|
AccessAll = organizationUser.AccessAll;
|
||||||
Permissions = CoreHelpers.LoadClassFromJsonData<Permissions>(organizationUser.Permissions);
|
Permissions = CoreHelpers.LoadClassFromJsonData<Permissions>(organizationUser.Permissions);
|
||||||
ResetPasswordEnrolled = !string.IsNullOrEmpty(organizationUser.ResetPasswordKey);
|
ResetPasswordEnrolled = !string.IsNullOrEmpty(organizationUser.ResetPasswordKey);
|
||||||
|
UsesKeyConnector = organizationUser.UsesKeyConnector;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Id { get; set; }
|
public string Id { get; set; }
|
||||||
@ -50,6 +51,7 @@ namespace Bit.Core.Models.Api
|
|||||||
public bool AccessAll { get; set; }
|
public bool AccessAll { get; set; }
|
||||||
public Permissions Permissions { get; set; }
|
public Permissions Permissions { get; set; }
|
||||||
public bool ResetPasswordEnrolled { get; set; }
|
public bool ResetPasswordEnrolled { get; set; }
|
||||||
|
public bool UsesKeyConnector { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class OrganizationUserDetailsResponseModel : OrganizationUserResponseModel
|
public class OrganizationUserDetailsResponseModel : OrganizationUserResponseModel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user