Compare commits

..

2 Commits

Author SHA1 Message Date
khwezi f51cc03327 Merge pull request 'Disabled caching' (#70) from payments into master
Reviewed-on: #70
2026-06-03 17:49:04 +02:00
Khwezi Mngoma 652ca82a57 Disabled caching
continuous-integration/drone/pr Build is passing
2026-06-03 17:48:38 +02:00
2 changed files with 1 additions and 3 deletions
@@ -13,6 +13,4 @@ public sealed class AuthentikSettings
public string? RequiredClaimNameValue { get; set; }
public bool RequireHttpsMetadata { get; set; }
public bool BypassSslErrors { get; set; }
}
+1 -1
View File
@@ -26,7 +26,7 @@ public static class Api
options.ClientSecret = authOptions.ApiResourceSecret;
options.DiscoveryPolicy.RequireHttps = authOptions.RequireHttpsMetadata;
options.EnableCaching = true;
options.EnableCaching = false;
options.CacheDuration = TimeSpan.FromMinutes(10);
});