화면정보 수정 및 미리보기 기능

This commit is contained in:
kjs
2025-10-15 18:31:40 +09:00
parent c42853f261
commit 716cfcb2cf
10 changed files with 742 additions and 230 deletions

View File

@@ -64,6 +64,14 @@ export const screenApi = {
return response.data.data;
},
// 화면 정보 수정 (메타데이터만)
updateScreenInfo: async (
screenId: number,
data: { screenName: string; description?: string; isActive: string },
): Promise<void> => {
await apiClient.put(`/screen-management/screens/${screenId}/info`, data);
},
// 화면 의존성 체크
checkScreenDependencies: async (
screenId: number,