Versions Compared

Key

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

...

Przykładowa konfiguracja

Code Block
languagejs
TODO{
    "menus": [
        {
            "id": "exampleMenuId",
            "name": "Przykładowa nazwa menu",
            "views": [
                {
                    "id": "exampleViewId",
                    "name": "Przykładowa nazwa widoku",
                    "source": {
                        "type": "DATASOURCE",
                        "id": "exampleDatasourceId"
                    },
                    "outputs": [
                        {
                            "id": "exampleOutputId1",
                            "name": "Identyfikator procesu",
                            "alias": "processIdFromDatasource",
                            "primaryKey": true
                        }
                    ],
                    "action": {
                        "type": "openUrl",
                        "url": "https://www.google.com/search",
                        "absolute": true,
                        "openInNewTab": true,
                        "parameters": [
                          {
                            "name": "q",
                            "outputId": "exampleOutputId1"
                          }
                        ]
                      }
                }
            ]
        }
    ]
}