Workflow security

The Workflow security allows elevated methods or functions to run with the security of the selected role, allowing the workflow to impersonate a user.

How to use

In order to create (or edit) Workflow security, in the Develop app, click on main menu and select Workflow security. In the page that opens click the Add button or select and existing one and click the Edit button.

Designer

Fields in the sidebar:

  1. Workflow - The workflow that contains the method/function.
  2. Method - The allowed method/function.
  3. Role - The role for the workflow security.
  4. Allow - If the security is allowed or not.

The following diagram describes the entity used by this designer:

erDiagram
    wf_security {
        integer id_wf "Workflow"
        string method "Method"
        integer id_role "Role"
        integer allow "Allow"
    }
    wf one--many wf_security : wf_wf_security
    role one--many wf_security : role_wf_security