Last active
April 4, 2016 07:20
-
-
Save RyanABailey/a0b2beae1ccc371e956c10b434d8f971 to your computer and use it in GitHub Desktop.
Custom workflow action
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Sitecore.Workflows.Simple; | |
namespace MyProject.Workflows | |
{ | |
public class CustomWorkflowAction | |
{ | |
public void Process(WorkflowPipelineArgs args) | |
{ | |
var workflowItem = args.DataItem; // The item in the workflow | |
// Custom logic here | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment