feat: [users] 사용자 관리에 직급/직책 입력 UI 추가
- 사용자 수정/생성 화면에 직급(position_key), 직책(job_title_key) 선택 필드 추가 - HR 사원관리의 position-add-modal 재사용 ([+] 버튼으로 새 직급/직책 추가) - UserService에서 tenant_user_profiles 테이블에 저장 (updateOrInsert) - UpdateUserRequest, StoreUserRequest에 validation 규칙 추가
This commit is contained in:
@@ -63,6 +63,8 @@ public function rules(): array
|
||||
'role_ids.*' => 'integer|exists:roles,id',
|
||||
'department_ids' => 'nullable|array',
|
||||
'department_ids.*' => 'integer|exists:departments,id',
|
||||
'position_key' => 'nullable|string|max:64',
|
||||
'job_title_key' => 'nullable|string|max:64',
|
||||
];
|
||||
|
||||
// 비본사 테넌트: 비밀번호 직접 입력 필수
|
||||
|
||||
Reference in New Issue
Block a user