인기 페이지 통계와 추천 사이트 메타데이터 추가 v1.5.9

This commit is contained in:
2026-05-27 10:34:07 +09:00
parent d7a3149ea1
commit fd9416c0e4
22 changed files with 596 additions and 94 deletions

View File

@@ -122,6 +122,8 @@ const mapNavigationItemRow = (row) => ({
id: row.id,
label: row.label,
url: row.url,
descriptionText: row.description_text || '',
thumbnailUrl: row.thumbnail_url || '',
location: row.location,
sortOrder: row.sort_order,
isVisible: row.is_visible,
@@ -1046,6 +1048,8 @@ export const getPublicNavigation = async () => {
id: item.id,
label: item.label,
url: item.url,
descriptionText: item.descriptionText,
thumbnailUrl: item.thumbnailUrl,
isVisible: item.isVisible
}))
}
@@ -1075,6 +1079,8 @@ export const updateNavigationItems = async (items) => {
id,
label,
url,
description_text,
thumbnail_url,
location,
sort_order,
is_visible,
@@ -1085,6 +1091,8 @@ export const updateNavigationItems = async (items) => {
${item.id},
${item.label},
${item.url},
${item.descriptionText || ''},
${item.thumbnailUrl || ''},
${item.location},
${item.sortOrder},
${item.isVisible},