mirror of
https://github.com/koel/koel
synced 2024-12-20 01:23:16 +00:00
17 lines
533 B
TypeScript
17 lines
533 B
TypeScript
|
import { http } from '@/services'
|
||
|
|
||
|
export const playlistCollaborationService = {
|
||
|
async createInviteLink (playlist: Playlist) {
|
||
|
if (playlist.is_smart) {
|
||
|
throw Error('Smart playlists are not collaborative.')
|
||
|
}
|
||
|
|
||
|
const token = (await http.post<{ token: string }>(`playlists/${playlist.id}/collaborators/invite`)).token
|
||
|
return `${window.location.origin}/#/playlist/collaborate/${token}`
|
||
|
},
|
||
|
|
||
|
async acceptInvite (token: string) {
|
||
|
return http.post<Playlist>(`playlists/collaborators/accept`, { token })
|
||
|
}
|
||
|
}
|