Skip to content

Commit

Permalink
Fixed the namespace for platform settings
Browse files Browse the repository at this point in the history
  • Loading branch information
khanrn committed Apr 8, 2024
1 parent fae7358 commit 1ffff1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void ConfigureServices(IServiceCollection services, IConfiguration config)
services.Configure<GeneralSettings>(config.GetSection("GeneralSettings"));
services.Configure<KeyVaultSettings>(config.GetSection("kvSetting"));
services.Configure<PepSettings>(config.GetSection("PepSettings"));
services.Configure<Altinn.Common.PEP.Configuration.PlatformSettings>(config.GetSection("PlatformSettings"));
services.Configure<Altinn.Platform.Storage.Configuration.PlatformSettings>(config.GetSection("PlatformSettings"));
services.Configure<QueueStorageSettings>(config.GetSection("QueueStorageSettings"));
services.Configure<AccessTokenSettings>(config.GetSection("AccessTokenSettings"));
services.Configure<PostgreSqlSettings>(config.GetSection("PostgreSqlSettings"));
Expand Down

0 comments on commit 1ffff1a

Please sign in to comment.