Update SslSettingsPartHandler.cs (#8715)

Adds the OnUpdated handler in order to Invalidate the cache of the settings
This commit is contained in:
Hermes Sbicego 2023-07-21 08:03:42 +02:00 committed by GitHub
parent 274b4416ec
commit d8bb23a4c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ namespace Orchard.SecureSocketsLayer.Handlers {
Filters.Add(new ActivatingFilter<SslSettingsPart>("Site"));
// Evict cached content when updated, removed or destroyed.
OnUpdated<SslSettingsPart>((context, part) => Invalidate(part));
OnPublished<SslSettingsPart>((context, part) => Invalidate(part));
OnRemoved<SslSettingsPart>((context, part) => Invalidate(part));
OnDestroyed<SslSettingsPart>((context, part) => Invalidate(part));
@ -40,4 +41,4 @@ namespace Orchard.SecureSocketsLayer.Handlers {
_signals.Trigger("SslSettingsPart_EvictAll");
}
}
}
}