chore: configure auth schemes and add refresh token revocation migration

This commit is contained in:
Stevan Freeborn
2026-02-03 21:04:25 -06:00
parent 92b3c8e9c4
commit 57c7a3a701
6 changed files with 258 additions and 0 deletions
@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.Authentication.JwtBearer;
namespace FiscalOS.Infra.Authentication;
public static class Schemes
{
public const string Default = JwtBearerDefaults.AuthenticationScheme;
public const string AllowExpiredTokens = "AllowExpiredTokens";
}