feat:유형에 면접 추가 + 커스텀 유형 동적 추가 기능

- Schedule 모델에 TYPE_INTERVIEW(면접) 추가 (보라색)
- 유형 select 옆에 [+] 버튼 → 커스텀 유형 직접 입력 가능
- 컨트롤러 validation을 string|max:50으로 변경 (동적 유형 허용)
- 달력 뱃지 색상을 인라인 스타일로 변경 (Tailwind JIT 미빌드 대응)
- 수정 모달에서 커스텀 유형도 select에 자동 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-10 20:50:26 +09:00
parent 96314d9c96
commit 26c3f2ca4d
4 changed files with 121 additions and 16 deletions

View File

@@ -58,7 +58,7 @@ public function store(Request $request): JsonResponse
'start_time' => 'nullable|date_format:H:i',
'end_time' => 'nullable|date_format:H:i',
'is_all_day' => 'boolean',
'type' => 'required|in:event,meeting,notice,other',
'type' => 'required|string|max:50',
'color' => 'nullable|string|max:20',
]);
@@ -116,7 +116,7 @@ public function update(Request $request, int $id): JsonResponse
'start_time' => 'nullable|date_format:H:i',
'end_time' => 'nullable|date_format:H:i',
'is_all_day' => 'boolean',
'type' => 'required|in:event,meeting,notice,other',
'type' => 'required|string|max:50',
'color' => 'nullable|string|max:20',
]);