Try our conversational search powered by Generative AI!

CMS 6 Workflow Help

Vote:
 

Hi,

i've been trying to get some help but not getting too far.. I want to alter the way the workflow in CMS 6 works, to allow people without publish rights to approve workflows.  Has anyone out there done this?

I have tried creating my own workflow and adding it to my EPiServer project but I need to link into all the templates for the start params etc and this is not working. 

Any help would be greatly appreciated

#41797
Jul 28, 2010 15:55
Vote:
 

Hi

I am now on parental leave and has not currently access to the "up to date" source code so my answer is as I remember it. Also for that reason I cant send you any source code but you can see it through for example reflector.

The check for publish rigths is actually not performed in the approval worklflow itself but in the corresponding ApprovalService class which hooks up to the event InstanceStarting and in the event handler method checks that the approvers has publish rights and if not cancels the starting of the workflow.

So what you can do is to inherit EPiServer.WorkflowFoundation.Workflows.ApprovalService class and override method HasReadAndPublishRights (unfortunately it is not declared as virtual so you have to use the new keword). And in your implementation of the method you can then remove the check for publish rights. Then you can change the service declaration in web.config from original ApprovalService to your custom service.

Unfortunately we have made the coupling between the approval workflow and the ApprovalService too "tigth" so you will also need to "override" the user controls WorkflowApprovalEvent.ascx and WorkflowApprovalStart.ascx and change the codebehind implemenatation to refer to your approval service instead of the original one (the references is in the methods InvokeEvent). With override of usercontrol I mean that you have to use the VirtualPathMappedProvider to map requests for the original usercontrols (WorkflowApprovalEvent.ascx and WorkflowApprovalStart.ascx) to your new controls (you also have to change the namespaces so you dont get namespace collisions).

Hope this helps, post further questions and I will try to follow them up.

Regards

Johan Björnfot

#42082
Aug 06, 2010 22:47
Vote:
 
#42083
Aug 06, 2010 22:47
Vote:
 

Hi Johan

any advice on how to override the user controls?

#42265
Aug 16, 2010 15:43
Vote:
 

does anyone know in which dll is the WorkflowApprovalStart

#42280
Aug 17, 2010 16:34
Vote:
 

Ok there seems to be somewhere else that needs overriding because I am still getting the error message saying the user doesn't have read or publish rights! very strange.  Can you please provide some assistance on this as soon as possible???

Thanks

Gwen

#42419
Aug 23, 2010 10:30
Vote:
 

Ok there seems to be somewhere else that needs overriding because I am still getting the error message saying the user doesn't have read or publish rights! very strange.  Can you please provide some assistance on this as soon as possible???

Thanks

Gwen

#42421
Aug 23, 2010 10:32
This thread is locked and should be used for reference only. Please use the Episerver CMS 7 and earlier versions forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.