MM-48915 - Calls: Add mobilev2 param to two requests (#6845)
This commit is contained in:
parent
27dcc95266
commit
ae56415c4b
1 changed files with 2 additions and 2 deletions
|
|
@ -36,14 +36,14 @@ const ClientCalls = (superclass: any) => class extends superclass {
|
|||
|
||||
getCalls = async () => {
|
||||
return this.doFetch(
|
||||
`${this.getCallsRoute()}/channels`,
|
||||
`${this.getCallsRoute()}/channels?mobilev2=true`,
|
||||
{method: 'get'},
|
||||
);
|
||||
};
|
||||
|
||||
getCallForChannel = async (channelId: string) => {
|
||||
return this.doFetch(
|
||||
`${this.getCallsRoute()}/${channelId}`,
|
||||
`${this.getCallsRoute()}/${channelId}?mobilev2=true`,
|
||||
{method: 'get'},
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue