From 18e3480e42ef8a01622d73f05ca950a8ed0cd1d5 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Wed, 28 Feb 2024 10:29:44 +0100 Subject: [PATCH] feat(components/modeler): document `disable-httl-hint` flag (#3387) Related to https://github.com/camunda/camunda-modeler/issues/4062 Co-authored-by: christinaausley <84338309+christinaausley@users.noreply.github.com> --- .../modeler/desktop-modeler/flags/flags.md | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/docs/components/modeler/desktop-modeler/flags/flags.md b/docs/components/modeler/desktop-modeler/flags/flags.md index 195b22c57f..dd8a50ec92 100644 --- a/docs/components/modeler/desktop-modeler/flags/flags.md +++ b/docs/components/modeler/desktop-modeler/flags/flags.md @@ -33,6 +33,7 @@ Flags passed as command line arguments take precedence over those configured via | "disable-cmmn" | true | | "disable-dmn" | false | | "disable-form" | false | +| ["disable-httl-hint"](#disable-history-time-to-live-hint) | false | | "disable-platform" | false | | "disable-zeebe" | false | | "disable-remote-interaction" | false | @@ -64,9 +65,21 @@ As a result, the app will only allow users to model BPMN diagrams. ![BPMN only mode](./img/bpmn-only.png) +### Disable `history-time-to-live` hint + +Camunda 7 only + +To disable the [history time to live hint](../../reference/modeling-guidance/rules/history-time-to-live.md) in scenarios where the engine configures HTTL, configure `flags.json`: + +```js +{ + "disable-httl-hint": true +} +``` + ### Custom `display-version` label -To display a custom version information in the status bar of the app, configure your `flags.json` like this: +To display a custom version information in the status bar of the app, configure `flags.json`: ```js { @@ -78,11 +91,13 @@ To display a custom version information in the status bar of the app, configure ### Zeebe SSL certificate -> :information_source: The Modeler will read trusted certificates from your operating system's trust store. +Camunda 8 only + +> :information_source: Modeler will read trusted certificates from your operating system's trust store. Provide additional certificates to validate secured connections to a Camunda 8 installation. -Configure your `flags.json` like this: +Configure your `flags.json`: ```js {