Skip to content

How to exclude specific modules from Coach Hello screen


Evangeline Philip    Feedback

By default, all modules that are made available for the phone app are also included on the Coach Hello screen. You can disable roles from viewing certain modules.

Exclude specific modules

Dependencies

The roles that do not see the modules specified in this configuration are based on roles that have Coach screen enabled for them.

How to

Specify the modules to be excluded by following these steps:

  1. Log in to the Vymo web app and click the gear icon :octicons-gear-16: in the upper-right corner of the screen.
  2. Locate Global Settings > Feature Management > Coach.
  3. Locate Module Exclusion and specify the modules to be excluded. You can select more than one module at a time.

Excluding specific modules from the Coach Hello screen through JSON

By default, all modules that are made available for the phone app are also included on the Coach Hello screen.

  1. Log in to the web app.
  2. Click Customize > Global Settings > JSON Configurations.
  3. Locate features, and the array for manager_view.
  4. Specify the modules that should not be displayed on the Coach Hello card by entering a comma-separated list of module codes for the rolesModules key. For example, the following code snippet excludes the module with the code leads from the Coach Hello screen.
    "cardsExclusionList": [
          {
              "code": "business",
              "disableAll": false,
              "modules": [{"disabled": false,"module": "leads"}],
              "rolesDisabled": [ "TL", "SO" ],
              "rolesModules": [{"role": "TL","modules": [{ "disabled": false,"module": "leads" }] }],
                },
            ],
    
  5. Click Save. You see a message that the changes are now saved as a draft.
  6. In the message box, click Go To Release Management so that you can move the changes permanently to the live configuration.
  7. Click Create a UAT release. Specify the release details and make sure to enter your own email ID because that's where you receive a one-time password (OTP) to continue with the process. Click Proceed.
  8. Enter the OTP you received in the email, and click Submit. Wait for a while till you see a confirmation message saying the process is complete.
  9. To see the changes, log out and log in again.

See also


Did this page help? No help at allYes, totally!
Back to top