Hello Webnodes,
I wonder if it is possible to catch event when article is changed to Published state in case when Release date occurred (ReleaseDate == DateTime.Now).
I try to use this without success:
public override void OnAfterRevisionAction(RevisionAction action, ContentBase newContent)
{
base.OnAfterRevisionAction(action, newContent);
}
So only way how to catch it, is to create workflow and checking when release date occurred?
Thank you!