refactor state storge, UI editor

This commit is contained in:
taDuc
2026-05-07 13:38:52 +07:00
parent a29a3a2049
commit 8b1df73797
46 changed files with 3345 additions and 3112 deletions
+3
View File
@@ -15,7 +15,10 @@ export interface Project {
avatar_url: string;
};
commits?: any[];
// Legacy (old BE): submission_ids
submission_ids?: any[];
// New BE: lightweight submissions list on project response
submissions?: Array<{ id: string; status: string }>;
members?: ProjectMember[];
}
export interface ProjectsResponse<T = Project> {