Skip to content

How to enable Coach Hello screen for specific roles


Evangeline Philip    Feedback

As a manager, the cards you see in the Hello screen is different from those who are not managers. If your company has signed up for Manager Experience, the Coach Hello Screen is the default view for all managerial roles. You can choose to specify roles that see this screen through the self-serve. Coach screen for specific roles

How to

Specify the roles that can see the Hello screen 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 and click Feature Management.
  3. Click Coach and click Enable. Specify the roles that can see the Coach screen.

Making the Coach Hello screen unavailable or available for a specific role through JSON

The Coach Hello Screen is displayed to all people who have at least one person reporting to them, or those who have the manager role assigned to them. To disable the Coach Hello Screen for a specific role, you first get the role code for that role and then you add it to an exclusion list.

  1. Log in to the web app.
  2. Click Customize > Global Settings > JSON Configurations.
  3. Locate the scopes object and get the code for the role to exclude.
  4. Locate features, and the array for manager_view.
  5. In the scopeMappings list, specify the role codes. For example, the following code makes the Coach Hello screen available for two roles, tsm and circle_manager. To make the screen unavailable, set the disabled flag to true. Set it to false to make the screen available.

    "scopeMappings" : [
         {
           "disabled" : false,
           "order" : null,
           "scope" : "tsm"
         },
         {
           "disabled" : false,
           "order" : null,
           "scope" : "circle_manager"
         }
       ],
    
  6. Click Save. You see a message that the changes are now saved as a draft.

  7. In the message box, click Go To Release Management so that you can move the changes permanently to the live configuration.
  8. 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.
  9. 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.
  10. To see the changes, log out and log in again.

See also


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