(values, file)
| 9 | }; |
| 10 | |
| 11 | export const addPlaylist = async (values, file) => { |
| 12 | return await API.addPlaylist({ |
| 13 | ...values, |
| 14 | file, |
| 15 | }); |
| 16 | }; |
| 17 | |
| 18 | export const getPlaylist = async (newPlaylist) => { |
| 19 | return await API.getPlaylist(newPlaylist.id); |
no test coverage detected