diff --git a/app/Startup.cs b/app/Startup.cs index 8137e6a..1e5e13e 100644 --- a/app/Startup.cs +++ b/app/Startup.cs @@ -86,7 +86,10 @@ public void ConfigureServices(IServiceCollection services) }); // Use a PostgreSQL table for session encryption keys - services.AddDataProtection().PersistKeysToDbContext(); + services + .AddDataProtection() + .PersistKeysToDbContext() + .SetApplicationName("SCJ-Online-Booking"); } // this setting is needed because NTLM auth does not work by default on Unix