Adds transactional outbox and email verification
Implements outbox pattern for reliable message delivery Adds email verification flow with Postmark integration Enhances account registration with secure token generation Introduces background processing for asynchronous email sending Implements database-level notification mechanism for message processing
This commit is contained in:
parent
88812177a9
commit
54b057886c
35 changed files with 1174 additions and 358 deletions
|
|
@ -62,7 +62,8 @@ namespace PlanTempus.SetupInfrastructure
|
|||
SetupDbAdmin setupDbAdmin,
|
||||
SetupIdentitySystem setupIdentitySystem,
|
||||
SetupConfiguration setupConfiguration,
|
||||
SetupApplicationUser setupApplicationUser)
|
||||
SetupApplicationUser setupApplicationUser,
|
||||
SetupOutbox setupOutbox)
|
||||
{
|
||||
static ConsoleColor _backgroundColor = Console.BackgroundColor;
|
||||
static ConsoleColor _foregroundColor = Console.ForegroundColor;
|
||||
|
|
@ -192,8 +193,14 @@ namespace PlanTempus.SetupInfrastructure
|
|||
Console.Write("Database.ConfigurationManagementSystem.SetupConfiguration...");
|
||||
sw.Restart();
|
||||
setupConfiguration.With(new SetupConfiguration.Command(), connParams);
|
||||
Console.Write($"DONE, took: {sw.ElapsedMilliseconds} ms");
|
||||
Console.WriteLine($"DONE, took: {sw.ElapsedMilliseconds} ms");
|
||||
|
||||
Console.WriteLine("::");
|
||||
Console.WriteLine("::");
|
||||
Console.Write("Database.Core.DDL.SetupOutbox...");
|
||||
sw.Restart();
|
||||
setupOutbox.With(new SetupOutbox.Command { Schema = "system" }, connParams);
|
||||
Console.WriteLine($"DONE, took: {sw.ElapsedMilliseconds} ms");
|
||||
|
||||
Console.WriteLine("::");
|
||||
Console.WriteLine("::");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue