You must define static and unique ID for workflow in the constructor
public TestWorkflow()
{
this.Id = new Guid("ccbeb0d5-adaa-4729-8b4c-4bb439dc0202");
this.Name = "TestWorkflow";
this.Description = "This workflow is just for testing";
this.Icon = "icon-chat-active";
this.Group = "Services";
}
Umbraco Forms - Custom Workflow
Hello, So im trying to create a workflow that after submit it will download a file that will be chosen in the workflow.
But im having kinda trouble with the execution of the WorkflowExecutionStatus Execute() method.
even if i take the one example umbraco has on this page:
https://our.umbraco.com/documentation/Add-ons/umbracoforms/developer/extending/Adding-a-Workflowtype
it will not work.
this is the code i have done so far:
Any suggestions or tips?
Kind regards / Emil
You must define static and unique ID for workflow in the constructor
is working on a reply...