This package is really simple, but aims to solve a fairly simple recurring question. "How do I unpublish content?" - While the functionality for this has existed forever, it's not that intuitive for content editors coming from other platforms where to find it.
This package adds an "Unpublish" option to the content publish menu drop down, which then triggers the usual expire content behind the scenes.
- Install NuGet package (use Optimizely Nuget)
Install-Package dotcentric.Optimizely.Unpublish
All you need to do other than installing the package is register the add on in your CMS project Startup.cs
public void ConfigureServices(IServiceCollection services)
{
// The usual stuff omitted
services.AddUnpublish();
}
All you need to do is run dotnet pack
in the solution directory.