Create videoGroup picklist for KT scenario

This commit is contained in:
2025-05-12 16:36:30 +02:00
parent 3a8912b959
commit 2807115239
3 changed files with 147 additions and 62 deletions

View File

@@ -0,0 +1,20 @@
import axios from 'axios';
export const KsVideoGroupService = {
getKsVideoGroups(projectId) {
return axios.get(`/project`, {
params: {
projectId: projectId
}
});
},
findByProjectId(projectId) {
return axios.get(`/project/${projectId}`);
},
getVideoGroupById(id) {
return axios.get(`/${id}`);
}
};