I try to extend the "SaveAsUmbracoNode" workflow type. Unfortunately the created document is not exposed in this class. So what i want to do is something like this:
public class SaveAsUmbracoNodeExtended : Umbraco.Forms.Core.Providers.WorkflowTypes.SaveAsUmbracoNode { public override Umbraco.Forms.Core.Enums.WorkflowExecutionStatus Execute(Record record, RecordEventArgs e) { var result= base.Execute(record, e);
var doc = new Node(base.DocumentId); // do something with the node // ...
return result; } }
Is this the right place to submit feature requests?
Feature request - extending SaveAsUmbracoNode
Hi
I try to extend the "SaveAsUmbracoNode" workflow type. Unfortunately the created document is not exposed in this class. So what i want to do is something like this:
Is this the right place to submit feature requests?
is working on a reply...