feat(core): add password hashing and token generation interfaces

This commit is contained in:
Stevan Freeborn
2026-02-02 13:19:36 -06:00
parent 7d5fd4149c
commit dcc5b2e0f0
7 changed files with 161 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ public sealed class AppDbContext(IOptions<AppDbContextOptions> ctxOptions) : DbC
var connectionString = $"{DataSourceKey}{dbPath}";
optionsBuilder.UseSqlite(connectionString)
.AddInterceptors(new TimestampInterceptor());
.AddInterceptors(TimestampInterceptor.New());
}
protected override void OnModelCreating(ModelBuilder modelBuilder)