Update remix API call to send local_id
This commit is contained in:
parent
39b98d3f39
commit
cd4f808166
1 changed files with 2 additions and 2 deletions
|
|
@ -120,9 +120,9 @@ class Api {
|
||||||
return axios.get(resourceUrl, params)
|
return axios.get(resourceUrl, params)
|
||||||
}
|
}
|
||||||
|
|
||||||
remix(shortcode: string, params?: {}) {
|
remix({ shortcode, body, params}: { shortcode: string, body?: {}, params?: {} }) {
|
||||||
const resourceUrl = `${this.url}/parties/${shortcode}/remix`
|
const resourceUrl = `${this.url}/parties/${shortcode}/remix`
|
||||||
return axios.post(resourceUrl, params)
|
return axios.post(resourceUrl, body, params)
|
||||||
}
|
}
|
||||||
|
|
||||||
savedTeams(params: {}) {
|
savedTeams(params: {}) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue