CHT Application Settings

Managing CHT application settings

This tutorial will take you through how to manage the CHT application settings, including;

  • Setting user roles and permissions
  • Enabling and disabling transitions
  • Configuring contact hierarchy and configuring replication.

App settings allow you to both persist information that is critical to the application outside the code, and to create profiles that store the preferences for project deployments.

Brief Overview of Key Concepts

The settings which control CHT apps are defined in the app_settings.json file, and stored in the settings doc in the database.

Permissions are settings that control access to specific app features and functionality.

Roles define permissions for users to access a group of app features and functionality.

Replication is when users download a copy of the data on to their device. Replication depth refers to the number of levels within a hierarchy a specific user role is able to replicate.

Transitions are Javascript code that run when a document is changed. A transition can edit the changed doc or do anything server side code can do for that matter.

Required Resources

You should have a functioning CHT instance and have cht-conf installed locally.

See Also: How to set up a CHT local configuration environment

Implementation Steps

In this section, you will define a new role, set permissions for the role, set transitions, configure a hierarchy, and upload your modified app settings file to your local environment.

1. Set Roles and Permissions

To add a new role, edit the object corresponding to "roles" key in app_settings.json. Add the new role as a key and within it, have an object with key/value pairs indicating the translation key of the role and whether it is an online or offline role.

Configure a CHW role by adding the following snippet to the "roles" object:

  "chw": {
    "name": "usertype.chw",
    "offline": true
  }

See Also: Roles

Set permissions for the new role by adding the role to the relevant permission in the "permissions" object.

For instance, to grant the CHW role permission to create people, add the role to the array with the key "can_create_people".

  "permissions": {
    ...

    "can_create_people": [
      "program_officer",
      "chw_supervisor",
      "chw"
    ],

    ...
  }

See Also: Permissions

2. Set Transitions

To enable or disable a transition, edit the object corresponding to the "transitions" key in app_settings.json. Enable the transition by setting its corresponding value to true, disable it by settings its value to false.

See Also: Transitions

  "transitions": {
    "accept_patient_reports": false,
    "conditional_alerts": false,
    "default_responses": false,
    "update_sent_by": false,
    "registration": false,
    "update_clinics": false,
    "update_notifications": false,
    "update_scheduled_reports": false,
    "update_sent_forms": false,
    "generate_patient_id_on_people": true,
    "death_reporting": true
  }

In this example, the generate_patient_id_on_people and death_reporting transitions are enabled while the rest are disabled.

3. Set Hierarchy

You can configure hierarchies by editing the object corresponding to the "contact_types" key in app_settings.json. The following code sample represents the default hierarchy configuration. You can modify existing contact types by editing the objects within the array.

When configuring a new deployment, it’s important to plan your hierarchy well. While there are no limits in the CHT to the hierarchical depth or breadth it will support, there are some trade-offs and caveats:

  • While it is possible to update the hierarchy configuration after launch it can be difficult and potentially disruptive to users. Try and avoid this by planning ahead as best as possible.
  • If your hierarchy is too shallow, users will download more docs than are necessary for their work which will impact the performance of the app. Taking the time to get the hierarchy configuration right makes it easy to give users access to only the docs they need.

See Also: Hierarchy

  "contact_types": [
    {
      "id": "district_hospital",
      "name_key": "contact.type.district_hospital",
      "group_key": "contact.type.district_hospital.plural",
      "create_key": "contact.type.district_hospital.new",
      "edit_key": "contact.type.place.edit",
      "icon": "medic-district-hospital",
      "create_form": "form:contact:district_hospital:create",
      "edit_form": "form:contact:district_hospital:edit"
    },
    {
      "id": "health_center",
      "name_key": "contact.type.health_center",
      "group_key": "contact.type.health_center.plural",
      "create_key": "contact.type.health_center.new",
      "edit_key": "contact.type.place.edit",
      "parents": [
        "district_hospital"
      ],
      "icon": "medic-health-center",
      "create_form": "form:contact:health_center:create",
      "edit_form": "form:contact:health_center:edit"
    },
    {
      "id": "clinic",
      "name_key": "contact.type.clinic",
      "group_key": "contact.type.clinic.plural",
      "create_key": "contact.type.clinic.new",
      "edit_key": "contact.type.place.edit",
      "parents": [
        "health_center"
      ],
      "icon": "medic-clinic",
      "create_form": "form:contact:clinic:create",
      "edit_form": "form:contact:clinic:edit",
      "count_visits": true
    },
    {
      "id": "person",
      "name_key": "contact.type.person",
      "group_key": "contact.type.person.plural",
      "create_key": "contact.type.person.new",
      "edit_key": "contact.type.person.edit",
      "primary_contact_key": "clinic.field.contact",
      "parents": [
        "district_hospital",
        "health_center",
        "clinic"
      ],
      "icon": "medic-person",
      "create_form": "form:contact:person:create",
      "edit_form": "form:contact:person:edit",
      "person": true
    }
  ]

4. Set Replication Depth

To configure replication depth for a specific role, edit the object corresponding to the "replication_depth" key in app_settings.json.

{
  "replication_depth": [
    { "role": "district_manager", "depth": 1 },
    { "role": "national_manager", "depth": 2 }
  ]
}

Configure the CHW role’s depth to 2 by adding the following key/value pairs to the array above.

{ "role": "chw", "depth": 2 }

See Also: Replication Depth

5. Upload App Settings

To upload app settings to your local instance, run the following command:

cht --url=https://<username>:<password>@localhost --accept-self-signed-certs upload-app-settings

Frequently Asked Questions


CHT Applications > Reference > app_settings.json

Settings: The primary location of settings for CHT applications

CHT Applications > Quick Guides > Performance > Replication

Settings for downloading copies of data onto a user’s device.

CHT Core Framework > Overview > Sentinel Transitions

Overview of Transitions, JavaScript code that runs server-side when database documents change

Documentation