Reputation: 49
I have created a Camunda spring-boot application by adding the following dependencies with 3.4.2 version by pointing to default h2 database.
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
<artifactId>camunda-bpm-spring-boot-starter-webapp-ee</artifactId>
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
Is there any special configuratio required under spring-boot application to see only Tasklist application by login with demotasklist user?
Appreciate your help.
Upvotes: 1
Views: 1894
Reputation: 49
I am able to access only the camunda Tasklist / Admin / Cockpit applications individually by enabling the Authorization under application properties.
camunda.bpm.authorization.enabled=true
OR
camunda:
bpm:
authorization:
enabled: true
Upvotes: 3