Skip to content

Commit

Permalink
PAS-563 | RPID is not mapped correctly when retrieving credentials (#151
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jonashendrickx authored Aug 26, 2024
1 parent e1965ff commit f6c87a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Passwordless/Models/Credential.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Text.Json.Serialization;

namespace Passwordless;

Expand Down Expand Up @@ -32,7 +33,7 @@ public record Credential(
DateTime CreatedAt,
Guid AaGuid,
DateTime LastUsedAt,
string RpId,
[property: JsonPropertyName("rpid")] string RpId,
string Origin,
string Country,
string Device,
Expand Down

0 comments on commit f6c87a1

Please sign in to comment.