Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Scenario 1: To hide the "Documents" tab in the product interface, update the config.json file by setting the status of the "documents" to false. Once updated, upload the modified file to the "Resources" section. This action will ensure that the "Documents" tab is no longer visible.

Code Block
languagejson
{
  "features": {
		"documents": false,
		"notes": true,
		"efforts": true,
		"processModel": true,
		"cpm": true, 
		"gantt": true,
        "activities": true,
        "swimlanes": true,
        "assignmenthistory": true,
        "templates": true
    }
}


The “documents” tab is hidden successfully

...