# Task list

## Configuration of request visibility on the task list

In order for requests to be visible on the task list, permissions for the user role must be configured: [Permission configuration for the user role (Assignment of a group in the User Task)](/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/eximee-dashboard/konfiguracja/uprawnienia.md).

## Configuration of the displayed data in the tile

It is possible to configure the data displayed in the middle part of the tile on the task list in Eximee Dashboard, located for example at:

```
ROUTER_HOST:8083/router-ui/#/tasks
```

To configure which data we want to display in the middle part of the tile, in the BPMN process go to:

User task (**UserTask**) → section \***Inputs**.

You need to add a new parameter named **TASK\_DASHBOARD** and set the variable assignment type (Variable Assignment Type) to **Map**.

<figure><img src="/files/9e673858509bb3e8ed0e9f749b6f25e04e4338bb" alt=""><figcaption><p>Figure 1. Configuration of the "UserTask" user task</p></figcaption></figure>

After clicking **+** we can add a configuration in the form of label-value pairs, which will be displayed on the task list in Eximee Dashboard.

Remember that the values in the **Key** field must be unique for a given user task (*UserTask*).

In the **Value** field, literals or task variables can be placed using;

```
${NAZWA_ZMIENNEJ}
```

In order to retrieve global variables (this can be done using [*scriptTask*](/documentation/documentation-en/budowanie-aplikacji/proces-biznesowy/zadania-automatyczne/zadanie-skryptowe-bpms-scripttask.md)) of the process, use the method **getVariable**:

```js
${execution.getVariable("variable_name e.g. start.documentId")}
```

Example of what the configured list looks like:

<figure><img src="/files/bd8333567c15f9afea3096dddff9fe33402dce49" alt=""><figcaption><p>Figure 2. Task list</p></figcaption></figure>

We can also specify the order of the displayed variables by placing, at the beginning of the key, a number in square brackets on the basis of which the variables will be sorted, e.g. "\[1]Label". Such a number will not be displayed, and variables without a number will be placed at the very end. For example, the map:

```js
execution.setVariable("TASK_DASHBOARD", [
 "[3]A": "A",
 "B": "B",
 "[1]C": "C"
]);
```

will be displayed as key-value pairs in the order of labels C, A, B.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.eximee.com/documentation/documentation-en/budowanie-aplikacji/interfejs-uzytkownika/eximee-dashboard/konfiguracja/lista-zadan.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
