Performance and Security in MultiTenant

0
I want to create a MultiTenantApp. I use this Modul https://appstore.home.mendix.com/link/app/80498/. this works :) I want to inoculate my Request entity with the Tenant.   I use a EvenHandler.   This also works, I'm not sure if this is the best option. Is there a better option in terms of performance and security?
asked
1 answers
0

Hi Jan, I'm also working on a multitenant app and we use a different approach. Instead of using an event-handler we customize the new request microflow.

This means you create a microflow that retrieves the current users tenant, then create the new request and assign the tenants association with the request, and open the new/edit page.

Then from the new/edit page the request is saved together with the tenants association. Okay?

answered