feat: [pm] 작업/이슈 긴급(is_urgent) 토글 기능 추가
- Task, Issue 모델에 is_urgent 필드 추가 - TaskService, IssueService에 toggleUrgent() 메서드 추가 - TaskController, IssueController에 toggleUrgent 엔드포인트 추가 - API 라우트에 toggle-urgent 경로 추가 - 프로젝트 상세 페이지 UI 개선: - 작업/이슈 행에 긴급 토글 버튼(불꽃 아이콘) 추가 - 서브 row(아코디언 내 이슈)에도 긴급 토글 추가 - 서브 row 컬럼을 작업 row와 동일하게 8컬럼으로 정렬 - 진행중 작업의 이슈 아코디언 자동 열기 - 이슈 상태 버튼 항상 테두리 표시
This commit is contained in:
@@ -39,6 +39,7 @@ class AdminPmTask extends Model
|
||||
'description',
|
||||
'status',
|
||||
'priority',
|
||||
'is_urgent',
|
||||
'due_date',
|
||||
'sort_order',
|
||||
'assignee_id',
|
||||
@@ -49,6 +50,7 @@ class AdminPmTask extends Model
|
||||
|
||||
protected $casts = [
|
||||
'project_id' => 'integer',
|
||||
'is_urgent' => 'boolean',
|
||||
'due_date' => 'date',
|
||||
'sort_order' => 'integer',
|
||||
'assignee_id' => 'integer',
|
||||
|
||||
Reference in New Issue
Block a user