| 45 | } |
| 46 | |
| 47 | export interface ProjectFormData { |
| 48 | name: string; |
| 49 | description: string; |
| 50 | type: 'web' | 'mobile' | 'api' | 'infrastructure' | 'cloud' | 'iot'; |
| 51 | status: 'active' | 'maintenance' | 'archived' | 'planning'; |
| 52 | criticality: 'critical' | 'high' | 'medium' | 'low'; |
| 53 | technologies: string[]; |
| 54 | team: string; |
| 55 | workspaceIds: string[]; |
| 56 | repository?: string; |
| 57 | url?: string; |
| 58 | } |
| 59 | |
| 60 | const PROJECT_TYPES = [ |
| 61 | { value: 'web', label: 'Web Application' }, |
nothing calls this directly
no outgoing calls
no test coverage detected