Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
229 changed files with 10707 additions and 77 deletions
Showing only changes of commit 21866d54cb - Show all commits

View File

@ -13,7 +13,7 @@ public class JwtTokenService : IAccessToken
public required string Audience { private get; init; } public required string Audience { private get; init; }
public TimeSpan Lifetime { private get; init; } public TimeSpan Lifetime { private get; init; }
public ReadOnlyMemory<byte> EncryptionKey { get; init; } public ReadOnlyMemory<byte> EncryptionKey { private get; init; }
public ReadOnlyMemory<byte> SigningKey { private get; init; } public ReadOnlyMemory<byte> SigningKey { private get; init; }
public (string Token, DateTime ExpireIn) GenerateToken(string userId) public (string Token, DateTime ExpireIn) GenerateToken(string userId)