Skip to content

Commit 055e4e3

Browse files
authored
Add RequestDeviceIdentifier to response (#5403)
1 parent ac443ed commit 055e4e3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Api/Auth/Models/Response/AuthRequestResponseModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public AuthRequestResponseModel(AuthRequest authRequest, string vaultUri, string
1818

1919
Id = authRequest.Id;
2020
PublicKey = authRequest.PublicKey;
21+
RequestDeviceIdentifier = authRequest.RequestDeviceIdentifier;
2122
RequestDeviceTypeValue = authRequest.RequestDeviceType;
2223
RequestDeviceType = authRequest.RequestDeviceType.GetType().GetMember(authRequest.RequestDeviceType.ToString())
2324
.FirstOrDefault()?.GetCustomAttribute<DisplayAttribute>()?.GetName();
@@ -32,6 +33,7 @@ public AuthRequestResponseModel(AuthRequest authRequest, string vaultUri, string
3233

3334
public Guid Id { get; set; }
3435
public string PublicKey { get; set; }
36+
public string RequestDeviceIdentifier { get; set; }
3537
public DeviceType RequestDeviceTypeValue { get; set; }
3638
public string RequestDeviceType { get; set; }
3739
public string RequestIpAddress { get; set; }

0 commit comments

Comments
 (0)