Separate auth0 users depending on tenants

This commit is contained in:
Charles Bochet
2023-02-03 19:59:00 +01:00
parent d94ed13f4e
commit d58af82c51
13 changed files with 147 additions and 56 deletions

View File

@ -1,4 +1,6 @@
export interface Tenant {
id: number;
name: string;
domain: string;
auth0_client_id: string;
}