Make project table associated with the user

This commit is contained in:
Takeshi Kimata
2024-05-22 22:33:21 +09:00
parent 704f20239e
commit 7a0bb63e7b
17 changed files with 174 additions and 24 deletions

View File

@@ -5,6 +5,8 @@ export type ProjectType = {
id: number;
name: string;
detail: string;
isPublic: string;
userId: number;
createdAt: string;
updatedAt: string;
Folders: FolderType[]; // additional property
@@ -23,11 +25,15 @@ export type ProjectsMessages = {
actions: string;
projectName: string;
projectDetail: string;
public: string;
ifYouMakePublic: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
noProjectsFound: string;
needSignedIn: string;
signIn: string;
};
export type ProjectMessages = {