Skip to content

Commit 5aa9a3c

Browse files
committed
Preparation of First Release (Part 5/7)
1 parent ba2c2af commit 5aa9a3c

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

src/CodeBeam.UltimateAuth.Core/Abstractions/Stores/IAccessTokenIdStore.cs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,10 @@
66
/// </summary>
77
public interface IAccessTokenIdStore
88
{
9-
Task StoreAsync(
10-
string? tenantId,
11-
string jti,
12-
DateTimeOffset expiresAt,
13-
CancellationToken ct = default);
9+
Task StoreAsync(string? tenantId, string jti, DateTimeOffset expiresAt, CancellationToken ct = default);
1410

15-
Task<bool> IsRevokedAsync(
16-
string? tenantId,
17-
string jti,
18-
CancellationToken ct = default);
11+
Task<bool> IsRevokedAsync(string? tenantId, string jti, CancellationToken ct = default);
1912

20-
Task RevokeAsync(
21-
string? tenantId,
22-
string jti,
23-
DateTimeOffset revokedAt,
24-
CancellationToken ct = default);
13+
Task RevokeAsync(string? tenantId, string jti, DateTimeOffset revokedAt, CancellationToken ct = default);
2514
}
2615
}

0 commit comments

Comments
 (0)