// shows the current status
const appSettings = await client.getApp();
console.log(appSettings.app.multi_tenant_enabled);
// enables teams
client.updateApp({
multi_tenant_enabled: true,
});Multi-tenancy and teams
Many apps built on Stream have customers of their own. If you're building something like Slack, or a SaaS application like InVision, you want to make sure that one customer can't read another customer's data. Stream can be configured in multi-tenant mode so that users are organized in separated teams that cannot interact with each other.
Teams
Stream has the concept of teams for users and the resources they create, such as channels and calls. The purpose of teams is to provide a simple way to separate different groups of users within a single application.
If a user belongs to a team, the API will ensure that such user will only be able to connect to resources from the same team. Features such as user search are limited so that a user can only search for users from the same team by default.
In the legacy permission system users can never access users or resources from other teams. In Permissions V2 it is possible to alter this behavior using multi-tenant permissions.
When enabling multi-tenant mode all user requests will always ensure that the request applies to a team the user belongs to. For instance, if a user from team "blue" tries to delete a message that was created on a channel from team "red" the API will return an error. If a user doesn't have a team set, it will only have access to users and resources that don't have a team.
Enable Teams for your application
In order to use Teams, your application must have multi-tenant mode enabled. You can enable multi-tenant from the dashboard (Overview screen) or by calling the Application Settings endpoint.
You only need to activate multi-tenancy once per application.
Do not turn off multi-tenancy on an application without very careful consideration, as this will turn off teams checking, which gives users the ability to access resources across all teams. Do not change it on a production app without testing that your integration supports it correctly.
Make sure to activate multi-tenancy before using teams.
User teams
When using teams, users must be created from your back-end and specify which teams they are a member of. This is necessary to ensure that a user cannot pick its own team.
client.upsertUsers([
{
id: "<user id>",
name: "Sara",
teams: ["red", "blue"],
},
]);A user can be a member of a maximum of 250 teams. Team name is limited to 100 bytes. There is no limit to how many teams your application can have.
User teams are included in all User object payloads. We recommend to have short team names to reduce response payload sizes
In Permissions v1, user teams can only be changed using server-side auth. This ensures users can't change their own team membership. In Permissions v2 it is possible to update user teams from client-side if UpdateUserTeam action is granted to the user
Team resources
Channels and calls can be associated with a team. Users can create them client-side, but if their user is part of a team, they will have to specify a team or the request will be rejected with an error.
Setting a team on a channel or call ensures proper permission checking for a multi-tenant application. Keep in mind that you will still need to enforce that channel and call IDs are unique. Two common approaches: generate random UUIDs, or include the team name as a prefix to avoid collisions (ie. "red-general" and "blue-general" instead of just "general").
For creation examples per product, see multi-tenant chat and multi-tenant video.
User search
By default the user search will only return results from teams that the user is a part of. The API injects filter {teams: {$in: ["red", "blue"]}} for every request that doesn't already contain a filter for the teams field. If you want to query users from all teams, you have to provide an empty filter like this: {teams:{}}.
For server-side requests, this filter does not apply and you can search as usual and also filter by teams.
// search for users by name and team
client.queryUsers({
payload: {
filter_conditions: {
name: "Nick",
teams: { $in: ["red", "blue"] },
},
},
});
// search for users that are not part of any team
client.queryUsers({
payload: {
filter_conditions: {
name: "Tom",
teams: null,
},
},
});Users that cannot be displayed to the current user due to lack of permissions will be omitted from response.
Querying team resources
Query endpoints follow the same rule. When using multi-tenant, client-side queries will only return channels or calls that match the query and are on the same team as the user. The API injects filter {team: {$in: [<user_teams>]}} for every request that doesn't already contain a filter for the team field. If you want to query across all teams, you have to provide an empty filter like this: {team:{}}. For server-side requests, this filter does not apply.
For the product query endpoints, see querying channels and querying calls.
Team based roles
By default a user will be assigned only 1 role (ie. user, admin, etc.). If you would like to have different roles depending on the team the user is part of, you can do so by specifying a separate role per team. This team based role is applicable only on resources that belong to that team. Let's imagine user Jane, she's a user with role user throughout the application, however on team red we would like to give her elevated permissions and give her the admin role.
We can do this by updating the user as follows:
await client.upsertUser({
id: "Jane",
role: "user",
teams: ["red", "blue"],
teams_role: {
red: "admin",
blue: "user",
},
});If no team based role is set for a team, the system uses the role of the user.
For example, user Janet is a member of teams red, blue and orange. She has role user and team based roles { "red": "admin", "blue": "user" }:
- On team red, she will have
adminlevel permissions. This means that on resources that belong to team red, she will have admin level permissions. - On resources from team blue, she has
userlevel permissions. - On resources from team orange, she also has
userlevel permissions (because no team role was assigned for this team).
Please be aware team based roles will only work when multitenancy is enabled.
Multi-tenant permissions
By default, for multi-tenant applications, all objects (users, channels, calls and messages) must belong to the same team to be able to interact. Multi-tenant permissions enable overriding that behavior, so that certain users can have permissions to interact with objects on any team. The built-in global_moderator and global_admin roles are designed for this; their grants use -any-team permission IDs such as create-channel-any-team and search-user-any-team.
The default grants for these roles are listed per scope in each product's reference; see the chat grant tables. Granting them works like any other permission; see permissions and roles.
Team usage statistics
For multi-tenant chat applications, you can query usage statistics broken down by team for billing, monitoring and analytics. See team usage statistics on the chat multi-tenancy page.