사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)

This commit is contained in:
JiWoong Sul
2025-08-29 15:11:59 +09:00
parent a740ff10c8
commit d916b281a7
333 changed files with 53617 additions and 22574 deletions

View File

@@ -227,14 +227,12 @@ class UserFormController extends ChangeNotifier {
(_) => onResult(null),
);
} else {
// 사용자 생성
// 사용자 생성 (백엔드 API v1 준수)
final params = CreateUserParams(
username: username,
email: email,
password: password,
name: name,
email: email.isEmpty ? null : email,
phone: phoneNumber.isEmpty ? null : phoneNumber,
role: role,
companiesId: 1, // TODO: 실제 회사 선택 기능 필요
);
final result = await _createUserUseCase(params);