Ask A Question

Notifications

You’re not receiving notifications from this thread.

How to attach "users" to a tenant/tenants with Rails multi-tenancy/apartment

Andre Goldstein asked in Rails

Hey guys,

Have been watching some great videos on multi-tenancy with Rails but one thing I can't quite get my head around.

If a User remains global, what is the best strategy for giving them access to a specific tenant(s)?

If I add a foreign_key relationship, to the Tenant model then how would you allow a user to belong to more than one tenant?

Any pointers much appreciated! Thanks!

Reply

So generally you want all your account related things to be outside the tenant.

User
Account / Tenant / Organization / Team (whatever you call this)
UserAccount (join table between the two to give Users access to accounts)

Everything is goes inside the tenant since those should all be private.

Or, you can put User inside the tenant and require users to login from the correct subdomain. This is how Slack works where you can use the same email to create many accounts. They're not global so you don't have a central account.

Kinda depends on what you want to accomplish. If you want users to be signed into all their tenants at once, putting the model outside the tenant is best.

Reply

Thanks Chris that's really helpful, couple of questions if I may!

Just to confirm, so in your above example a UserAccount would have one account and one user?

My main confusion at the moment is how to replicate what I currently have where I have a Teacher model and a Student Model (which are both Devise models under the hood), do you think it would be best to maintain a single User model instead if going with the multi-tenancy approach?

I guess I'm trying to see how a student would have access to a Tenant but only as a student, not as a teacher.

Thanks again for the input!

Reply

Yeah, so Account would have the subdomain to identify the tenant.

UserAccount

  • belongs_to :user
  • belongs_to :account

You sound like you're trying to accomplish something different though, maybe not something exactly like a normal multi-tenant app.

The question is really what are you trying to accomplish here? Are you just looking to have each teacher's data separate from other ones? If so, then just make the Teacher the tenant, and Students don't really matter. They probably would go inside the tentant because they're specific to the teacher. They would login on the Teacher's subdomain.

Reply

Thanks Chris,

I think it is a little different as I'm trying to plan ahead in the case where I'd want to make the "student" part of the app as fully-featured as the teacher part (eg: combined lesson calendar that sort of thing).

If the teacher remains the main target for the app then I think the normal multi-tenant setup you describe could work well. The only limitation being the student will have to login individually per teacher (in case they had several teachers on the same platform) as opposed to having a combined view of all their teachers.

Now running into a few issues with login/sessions, which I will have to overcome to keep going the multi-tenant route, it already feels a little brittle compared to the usual simplicity of Rails :D

Thanks again

Reply

Yeah, I'm not quite sure actually what benefit you get out of going with multitenancy right now. If you plan on making the Student side of things combine data from each Teacher, you're not really building a multi-tenant app. You may want to consider just building a regular Rails app and associating records to teachers like you normally would.

Reply

Thanks Chris, I think the niggles I'm having setting up multi-tenancy right now along with your advice is pushing me in the direction of ploughing ahead with the slightly fiddly queries!

Reply

As long as you write good scopes and before_action methods in your controllers you should be fine. I generally don't recommend doing multi-tenancy unless your data is truly separate.

Multitenant apps generally act like truly separate databases so the user data never gets shared.

Reply

Thanks for the clarification! Sometimes it's nice to hear opinionated advice!

Reply

As long as it helps get your app launched sooner than later! 🤓

Reply

Is multitenancy is possible in Rails?? @ Chris Oliver

Reply
of course it is Gourav.
Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,464+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.