Skip to content

Commit 7dca05c

Browse files
PAS90: LastSeenAt column should be empty in users list when user has no active credentials (#10)
* LastUsedAt should be nullable on PasswordlessUserSummary as there is no guarantee they have credentials * Bump version to 0.0.13
1 parent f6fb762 commit 7dca05c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Sdk/Models/PasswordlessUserSummary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ public class PasswordlessUserSummary
66
public List<string> Aliases { get; set; }
77
public int CredentialsCount { get; set; }
88
public int AliasCount { get; set; }
9-
public DateTime LastUsedAt { get; set; }
9+
public DateTime? LastUsedAt { get; set; }
1010
}

src/Sdk/Sdk.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<RepositoryUrl>https://github.com/passwordless/passwordless-dotnet</RepositoryUrl>
1515
<RepositoryType>git</RepositoryType>
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
17+
<Version>0.0.13</Version>
1718
</PropertyGroup>
1819

1920
<ItemGroup>

0 commit comments

Comments
 (0)