릴리스: v1.4.31 legacy game 호환층 제거 마감

This commit is contained in:
2026-04-02 21:36:53 +09:00
parent 8898ac24f9
commit 60cc5a72c5
7 changed files with 17 additions and 83 deletions

View File

@@ -16,7 +16,6 @@ export function createRouter() {
history: createWebHistory(),
routes: [
{ path: '/', name: 'home', component: HomeView },
{ path: '/games/:gameId', redirect: (to) => `/topics/${encodeURIComponent(String(to.params.gameId || ''))}` },
{ path: '/topics/:topicId', name: 'topicHub', component: GameHubView },
{ path: '/editor/:topicId/new', name: 'newEditor', component: TierEditorView },
{ path: '/editor/:topicId/:tierListId', name: 'editEditor', component: TierEditorView },
@@ -26,7 +25,6 @@ export function createRouter() {
{ path: '/search', name: 'search', component: SearchResultsView },
{ path: '/admin', redirect: '/admin/featured' },
{ path: '/admin/featured', name: 'adminFeatured', component: AdminView },
{ path: '/admin/games', redirect: '/admin/templates' },
{ path: '/admin/templates', name: 'adminTemplates', component: AdminView },
{ path: '/admin/items', name: 'adminItems', component: AdminView },
{ path: '/admin/tierlists', name: 'adminTierlists', component: AdminView },

View File

@@ -572,7 +572,6 @@ function formatImageJobSourceCategory(category) {
case 'tierlists':
return '티어표 썸네일'
case 'topics':
case 'games':
return '주제/템플릿 이미지'
case 'avatars':
return '프로필 아바타'