mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Add RequestDeviceIdentifier to response (#5403)
This commit is contained in:
parent
ac443ed495
commit
055e4e3066
@ -18,6 +18,7 @@ public class AuthRequestResponseModel : ResponseModel
|
|||||||
|
|
||||||
Id = authRequest.Id;
|
Id = authRequest.Id;
|
||||||
PublicKey = authRequest.PublicKey;
|
PublicKey = authRequest.PublicKey;
|
||||||
|
RequestDeviceIdentifier = authRequest.RequestDeviceIdentifier;
|
||||||
RequestDeviceTypeValue = authRequest.RequestDeviceType;
|
RequestDeviceTypeValue = authRequest.RequestDeviceType;
|
||||||
RequestDeviceType = authRequest.RequestDeviceType.GetType().GetMember(authRequest.RequestDeviceType.ToString())
|
RequestDeviceType = authRequest.RequestDeviceType.GetType().GetMember(authRequest.RequestDeviceType.ToString())
|
||||||
.FirstOrDefault()?.GetCustomAttribute<DisplayAttribute>()?.GetName();
|
.FirstOrDefault()?.GetCustomAttribute<DisplayAttribute>()?.GetName();
|
||||||
@ -32,6 +33,7 @@ public class AuthRequestResponseModel : ResponseModel
|
|||||||
|
|
||||||
public Guid Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
public string PublicKey { get; set; }
|
public string PublicKey { get; set; }
|
||||||
|
public string RequestDeviceIdentifier { get; set; }
|
||||||
public DeviceType RequestDeviceTypeValue { get; set; }
|
public DeviceType RequestDeviceTypeValue { get; set; }
|
||||||
public string RequestDeviceType { get; set; }
|
public string RequestDeviceType { get; set; }
|
||||||
public string RequestIpAddress { get; set; }
|
public string RequestIpAddress { get; set; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user