Auth: Remove feature toggle authAPIAccessTokenAuth (#100055)

Remove feature toggle
This commit is contained in:
Karl Persson
2025-02-04 16:31:24 +01:00
committed by GitHub
parent bb15f24dcd
commit b16e290444
6 changed files with 3 additions and 16 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ func ProvideRegistration(
authnSvc.RegisterClient(clients.ProvideJWT(jwtService, cfg))
}
if cfg.ExtJWTAuth.Enabled && features.IsEnabledGlobally(featuremgmt.FlagAuthAPIAccessTokenAuth) {
if cfg.ExtJWTAuth.Enabled {
authnSvc.RegisterClient(clients.ProvideExtendedJWT(cfg))
}