8base for Multi-tenant SaaS

Anyone have any lessons learned for creating SaaS on 8base?

I see Sebastian’s response about multi-tenancy here.

An assumption: a typical SaaS’s extra need for more role and permission-jockeying of tenants <-> users <-> restricted data than a typical app may mean that using 8base native auth might be the most flexible way to go? Valid?

That going 8base auth will be less of a headache and more flexible than integrating with Auth0 multi-tenancy options) or others like Firebase auth (which has some multi-tenancy & tenant admin sdk functionality built-in.)

Thoughts?

Hi there.

We have built a couple of multi tenants applications on top of 8base, so we have a couple of lessons learned that we can share.

Regarding your question about authentication and authorization we use a combination of 8base permission engine with triggers on the mutations of the tables to make it happen:

  1. Basically we use a Table of affiliation of users with the tenants, like @sebastian.scholl was explaining. Then the permission filters use those relationships to define a higher level of data that a user can “see”: READ, maybe UPDATE, maybe DELETE, maybe CREATE.

  2. Higher measures of security and authorization policies are enforced via the before triggers. We make this functions loose enough to be used on wen applications and the triggers as well to avoid code duplicity.

I hope this may help, and feel free to ask any other question, happy to share what we have done, and possible alternatives to future scenarios.

thanks

Hey thanks much Alacret. OK so if I understand it:

  1. Use custom 8base auth rules for tenants and their users for your various data tables a la that Sebastian post.

  2. And before a user can perform any graphql mutation like create, update or delete, you use an 8base “trigger.before” to fire an additional auth function: “Is this person allowed to do what they are about to do? If yes, proceed. If not, give error.”

Gotcha. Great. Thanks.

Yes. Exactly.

Keep in mind that I think most of the rules can be built in the 8base permission engine, just we choose to write them in Javascript because we also need it them in the frontend.

I’m also building a multi-tenant architecture with 8base and I’m still trying to figure things out. Did you say something was on the way to help with it @sebastian.scholl or is it still in a far future?

1 Like

We have built 3 multi tenant apps with 8base. Let me know if you have any specific question I can help you with.

2 Likes