[FIX] Team creation not adding members (#4588)

Co-authored-by: Gleidson Daniel Silva <gleidson10daniel@hotmail.com>
This commit is contained in:
Luciano Marcos Pierdona Junior 2022-10-18 08:39:06 -03:00 committed by GitHub
parent ef753086a9
commit 6dd9578413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ export type TeamsEndpoints = {
'teams.create': {
POST: (params: {
name: string;
users: string[];
members: string[];
type: TEAM_TYPE;
room: { readOnly: boolean; extraData: { broadcast: boolean; encrypted: boolean } };
}) => { team: ITeam };

View File

@ -160,7 +160,7 @@ export const createTeam = ({
}) => {
const params = {
name,
users,
members: users,
type: type ? TEAM_TYPE.PRIVATE : TEAM_TYPE.PUBLIC,
room: {
readOnly,