I am going to try and make this work in my Rails app but I figured I would see if anyone knew of a gotcha that would stop me in the tracks.
The basic premise is that I have the following models:
From what I have read so far as long as I set this up right I will have my tenant data segregated and then users can switch between tenants and their permissions will change accordingly.
So my specific question:
Will acts_as_tenant just work with the Rolify?
So for example if and admin user in Tenant1 adds a role to a new user will that role automatically only apply to the resources owned by that tenant?
I ended up with the apartment gem and my User and Company models in the public schema. I have a Role model that links User to Company and contains the Roles that the user has for a given company. Devise authenticates the User and Pundit uses Role to authorize.