Roles

Security is structured around roles, which serve as the foundation for granting privileges to entities associated with specific parts of the organization (the scope of the grant). Roles are where privileges are assigned, and users are subsequently mapped to one or more roles to define their access rights.

How to use

flowchart LR
    A((Start))
    B[Create the role]
    C[Grant privileges using Entity security]
    D[Grant privileges using Workflow security]
    E((End))

    A-->B
    B-.->C
    B-.->D
    C-.->E
    D-.->E

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

See also Entity security and Workflow security.

Designer

Fields in the sidebar:

  1. Name - The name of the role.

The following diagram describes the entity used by this designer:

erDiagram
    role {
        string name "Name"
    }