Skip to content

Commit 3ee55f4

Browse files
author
Victor Raton
committed
feat: méotodos de listar e assinar conttato a time no
1 parent 387f6dd commit 3ee55f4

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

interfaces.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,14 @@ export class ChatWootInterface {
9191
);
9292
return Promise.resolve();
9393
}
94-
94+
get_teams(): Promise<Team[]> {
95+
return Promise.resolve([])
96+
}
97+
98+
assign_team(p: {id_user: string, id_team: string}): Promise<boolean
99+
> {
100+
console.log(`Assinando usuario ${p.id_user} para o time ${p.id_team}`)
101+
return Promise.resolve(false)
102+
}
95103
}
96104

0 commit comments

Comments
 (0)