Topics

How to use

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

Designer

TOPIC tab

  1. Name - The topic name.
  2. UUID - Specify if the subscriber is contained in a module.

The following diagram describes the entity used by this designer:

erDiagram
    wf_topic {
        string name "Name"
        string uuid "UUID"
    }

SUBSCRIBERS tab

Click the Add button to add subscribers and select and then the Delete button to remove subscribers.

Fields for subscribers:

  1. Topic - The topic.
  2. Workflow - The workflow to execute when the topic is triggered.
  3. Module - Specify if the subscriber is contained in a module.

The following diagram describes the entities used by this tab:

erDiagram
    wf_topic_subscriber {
        string uuid "UUID"
        integer id_wf_topic "Workflow"
        integer id_wf "Workflow"
        integer id_ui_module "Module"
    }
    wf_topic one--many wf_topic_subscriber : wf_topic_wf_topic_subscriber
    ui_module one--many wf_topic_subscriber : ui_module_wf_topic_subscriber
    wf one--many wf_topic_subscriber : wf_wf_topic_subscriber