implement sessions; retry to create spotify client
This commit is contained in:
parent
f3b9591668
commit
cf96264024
@ -63,11 +63,11 @@ export class Api {
|
|||||||
return (await this.axiosPublic.get(`/users/${userId}/info`))?.data;
|
return (await this.axiosPublic.get(`/users/${userId}/info`))?.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
async joinSession(userId: string) {
|
async joinSession(hostId: string) {
|
||||||
return (await this.axios.post(`/user/joinSession`, { userId }))?.data;
|
return (await this.axios.post(`/session/join`, { hostId }))?.data;
|
||||||
}
|
}
|
||||||
async leaveSession(userId: string) {
|
async leaveSession(hostId: string) {
|
||||||
return (await this.axios.post(`/user/leaveSession`, { userId }))?.data;
|
return (await this.axios.post(`/session/session`, { hostId }))?.data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user