릴리스: v0.1.23 홈 게임 정렬과 관리자 순서 관리 추가

This commit is contained in:
2026-03-26 14:59:50 +09:00
parent b58a641453
commit c1575783f0
9 changed files with 304 additions and 45 deletions

View File

@@ -32,6 +32,7 @@ export const api = {
listGames: () => request('/api/games'),
getGame: (gameId) => request(`/api/games/${encodeURIComponent(gameId)}`),
updateAdminGameDisplayOrder: (payload) => request('/api/admin/games/display-order', { method: 'PATCH', body: payload }),
listAdminCustomItems: ({ q = '', page = 1, limit = 50, orphanOnly = false } = {}) =>
request(
`/api/admin/custom-items?q=${encodeURIComponent(q)}&page=${encodeURIComponent(page)}&limit=${encodeURIComponent(limit)}&orphanOnly=${encodeURIComponent(orphanOnly)}`