diff --git a/backend/routers/page_permissions.py b/backend/routers/page_permissions.py index 9337be1..2971fe6 100644 --- a/backend/routers/page_permissions.py +++ b/backend/routers/page_permissions.py @@ -44,7 +44,7 @@ class UserPagePermissionSummary(BaseModel): DEFAULT_PAGES = { 'issues_create': {'title': '부적합 등록', 'default_access': True}, 'issues_view': {'title': '부적합 조회', 'default_access': True}, - 'issues_manage': {'title': '부적합 관리', 'default_access': False}, + 'issues_manage': {'title': '부적합 관리', 'default_access': True}, 'projects_manage': {'title': '프로젝트 관리', 'default_access': False}, 'daily_work': {'title': '일일 공수', 'default_access': False}, 'reports': {'title': '보고서', 'default_access': False} diff --git a/frontend/static/js/components/common-header.js b/frontend/static/js/components/common-header.js index e648476..2ce841a 100644 --- a/frontend/static/js/components/common-header.js +++ b/frontend/static/js/components/common-header.js @@ -46,7 +46,7 @@ class CommonHeader { id: 'issues_manage', title: '목록 관리', icon: 'fas fa-tasks', - url: '/issue-view.html#manage', + url: '/index.html#list', pageName: 'issues_manage', color: 'text-orange-600', bgColor: 'bg-orange-50 hover:bg-orange-100' diff --git a/frontend/static/js/core/page-preloader.js b/frontend/static/js/core/page-preloader.js index 7d89eb8..8e95920 100644 --- a/frontend/static/js/core/page-preloader.js +++ b/frontend/static/js/core/page-preloader.js @@ -56,7 +56,7 @@ class PagePreloader { const allPages = [ { id: 'issues_create', url: '/index.html', priority: 1 }, { id: 'issues_view', url: '/issue-view.html', priority: 1 }, - { id: 'issues_manage', url: '/issue-view.html#manage', priority: 2 }, + { id: 'issues_manage', url: '/index.html#list', priority: 2 }, { id: 'projects_manage', url: '/project-management.html', priority: 3 }, { id: 'daily_work', url: '/daily-work.html', priority: 2 }, { id: 'reports', url: '/reports.html', priority: 3 }, diff --git a/frontend/static/js/core/permissions.js b/frontend/static/js/core/permissions.js index 540a2a1..f8b13f5 100644 --- a/frontend/static/js/core/permissions.js +++ b/frontend/static/js/core/permissions.js @@ -17,7 +17,7 @@ class PagePermissionManager { return { 'issues_create': { title: '부적합 등록', defaultAccess: true }, 'issues_view': { title: '부적합 조회', defaultAccess: true }, - 'issues_manage': { title: '부적합 관리', defaultAccess: false }, + 'issues_manage': { title: '부적합 관리', defaultAccess: true }, 'projects_manage': { title: '프로젝트 관리', defaultAccess: false }, 'daily_work': { title: '일일 공수', defaultAccess: false }, 'reports': { title: '보고서', defaultAccess: false },