add editor

This commit is contained in:
taDuc
2026-05-02 02:48:17 +07:00
parent 41af501b51
commit a74047fd09
62 changed files with 9049 additions and 9 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ export interface Project {
title: string;
description: string;
project_status: "PRIVATE" | "PUBLIC" | "ARCHIVE";
latest_commit_id?: string | null;
created_at: string;
updated_at: string;
is_deleted?: boolean;
@@ -79,4 +80,4 @@ export interface AddMemberPayload {
export interface UpdateMemberRolePayload {
role: "PRIVATE" | "PUBLIC" | "ARCHIVE",
}
}