Hi,
We can pass a tenant id when deploying a process definition:
repositoryService.createDeployment()
.addClassPathResource(...)
.tenantId("myTenantId")
.deploy();
Using Spring Boot, process definitions are automatically deployed (from process folder in resources).
How can I set up the tenant Id in such a case?
Thanks,