시리즈에 콘텐츠 추가하는 기능

This commit is contained in:
Yu Sung
2024-04-24 14:22:41 +09:00
parent 80e2e7d802
commit 756e0321f8
2 changed files with 284 additions and 21 deletions

View File

@@ -34,6 +34,13 @@ async function getSeriesContent(seriesId, page) {
);
}
async function searchContentNotInSeries(seriesId, searchWord) {
return Vue.axios.get(
"/creator-admin/audio-content/series/content/search?series_id=" + seriesId +
"&search_word=" + searchWord
)
}
async function addingContentToTheSeries(seriesId, contentIdList) {
return Vue.axios.post(
"/creator-admin/audio-content/series/add/content",
@@ -56,5 +63,6 @@ export {
getSeriesDetail,
getSeriesContent,
addingContentToTheSeries,
removeContentInTheSeries
removeContentInTheSeries,
searchContentNotInSeries
}