Skip to content

Give editors an intuitive way to unpublish content

Notifications You must be signed in to change notification settings

dotcentric/dotcentric.Optimizely.Unpublish

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotcentric Optimizely Unpublish

Platform Platform

Description

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.

Screenshot of package

How to get started?

  • Install NuGet package (use Optimizely Nuget)
  • Install-Package dotcentric.Optimizely.Unpublish

Configuration

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();
}

Packaging updates

All you need to do is run dotnet pack in the solution directory.