MCPcopy Create free account
hub / github.com/TinyActive/fluxion / ProjectFormData

Interface ProjectFormData

src/components/workspaces/ProjectDialog.tsx:47–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47export 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
60const PROJECT_TYPES = [
61 { value: 'web', label: 'Web Application' },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected