1 min readFeb 20, 2018
--
Hi Max Jacobson
The tenantId should be passed to the constructor function when creating an object.
Something like this
const user = initializeUsers(tenantId);
or If you have using ES6 classes
const user = new User(tenantId);