adds stub code for clearing scheduled publishing
This commit is contained in:
@@ -412,6 +412,7 @@ AND umbracoNode.id <> @id",
|
||||
//we've already looked up the previous version of the content type so we know it's previous variation state
|
||||
MoveVariantData(entity, (ContentVariation)dtoPk.Variations, entity.Variations);
|
||||
Clear301Redirects(entity);
|
||||
ClearScheduledPublishing(entity);
|
||||
}
|
||||
|
||||
//track any property types that are changing variation
|
||||
@@ -513,6 +514,14 @@ AND umbracoNode.id <> @id",
|
||||
Database.Execute(sqlDelete);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Clear any scheduled publishing associated with content for a content type
|
||||
/// </summary>
|
||||
private void ClearScheduledPublishing(IContentTypeComposition contentType)
|
||||
{
|
||||
//TODO: Fill this in when scheduled publishing is enabled for variants
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Moves variant data for property type changes
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user