시리즈에 콘텐츠 추가하는 기능
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user