fix: 회사정보 로고 삭제 기능 수정
- TenantUpdateRequest에 logo 필드 규칙 추가 - logo: null 전송 시 validated()에서 무시되던 문제 해결 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -21,6 +21,7 @@ public function rules(): array
|
|||||||
'address' => 'nullable|string|max:255',
|
'address' => 'nullable|string|max:255',
|
||||||
'business_num' => 'nullable|string|max:20',
|
'business_num' => 'nullable|string|max:20',
|
||||||
'ceo_name' => 'nullable|string|max:100',
|
'ceo_name' => 'nullable|string|max:100',
|
||||||
|
'logo' => 'nullable|string|max:255',
|
||||||
// 확장 필드 (JSON)
|
// 확장 필드 (JSON)
|
||||||
'options' => 'nullable|array',
|
'options' => 'nullable|array',
|
||||||
'options.business_type' => 'nullable|string|max:100',
|
'options.business_type' => 'nullable|string|max:100',
|
||||||
|
|||||||
Reference in New Issue
Block a user