* Expose schedule date for on document get endpoint * typo fix * stupid stuff * Enable content scheduling features in the publishing service * Replace obsoleted non async calls * Add content scheduling test * Publush and schedule combination test * More invariantCulture notation allignment and more tests * Link up api with updated document scheduling * More invariant culture notation allignment * Fix breaking change * Return expected status codes. * Fix constructor * Forward Default implementation to actual core implementation Co-authored-by: Bjarke Berg <mail@bergmania.dk> * Forward default implementation to core implementation Co-authored-by: Bjarke Berg <mail@bergmania.dk> * Make content with scheduling retrieval scope safe --------- Co-authored-by: Bjarke Berg <mail@bergmania.dk>
15 lines
363 B
C#
15 lines
363 B
C#
namespace Umbraco.Cms.Core.Models.ContentQuery;
|
|
|
|
public class ContentScheduleQueryResult
|
|
{
|
|
public ContentScheduleQueryResult(IContent content, ContentScheduleCollection schedules)
|
|
{
|
|
Content = content;
|
|
Schedules = schedules;
|
|
}
|
|
|
|
public IContent Content { get; init; }
|
|
|
|
public ContentScheduleCollection Schedules { get; init; }
|
|
}
|