Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jondjones/4af086d885e906f30b146a8269abe1a3 to your computer and use it in GitHub Desktop.
Save jondjones/4af086d885e906f30b146a8269abe1a3 to your computer and use it in GitHub Desktop.
How To Get A List Of Scheduled Pages Within Umbraco 8
public class ScheduledPosts
{
private readonly IContentService _contentService;
public ContentServiceHelper(
IContentService contentService)
{
_contentService = contentService;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment