From c49beb917a3c3bdb8e33070a83ff9dc29381cbab Mon Sep 17 00:00:00 2001 From: Luis Felix Date: Thu, 29 Aug 2024 11:53:38 -0400 Subject: [PATCH 1/4] OV-84: * Make auth layout responsive --- frontend/src/bundles/auth/pages/auth.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/bundles/auth/pages/auth.tsx b/frontend/src/bundles/auth/pages/auth.tsx index 26f0ef42e..80ebac358 100644 --- a/frontend/src/bundles/auth/pages/auth.tsx +++ b/frontend/src/bundles/auth/pages/auth.tsx @@ -55,7 +55,7 @@ const Auth: React.FC = () => { }; return ( - + {/* TODO: Replace with valid loader */} {dataStatus === DataStatus.PENDING && (

@@ -64,7 +64,7 @@ const Auth: React.FC = () => { )}

{getScreen(pathname)}
{/* TODO: Add logo */} -
LOGO
+
LOGO
); }; From 010f720f9fc72664daf6fd0b06701f3bd29c73b4 Mon Sep 17 00:00:00 2001 From: Luis Felix Date: Thu, 29 Aug 2024 12:08:04 -0400 Subject: [PATCH 2/4] OV-87: * Run Prettier --- frontend/src/bundles/auth/pages/auth.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/bundles/auth/pages/auth.tsx b/frontend/src/bundles/auth/pages/auth.tsx index 80ebac358..deae7cbd2 100644 --- a/frontend/src/bundles/auth/pages/auth.tsx +++ b/frontend/src/bundles/auth/pages/auth.tsx @@ -64,7 +64,12 @@ const Auth: React.FC = () => { )}
{getScreen(pathname)}
{/* TODO: Add logo */} -
LOGO
+
+ LOGO +
); }; From 16e630f88b719d3c9dec07389b293ef1aa692679 Mon Sep 17 00:00:00 2001 From: Oleksandra Nedashkivska Date: Thu, 29 Aug 2024 19:43:24 +0300 Subject: [PATCH 3/4] OV-88: + erd diagram --- README.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b28a1414f..2ee5041e7 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,27 @@ Create personalized sales videos using generated video content and AI-generated ## 💽 DB Schema -TBD +```mermaid +erDiagram + users { + uuid id PK + string email UK + string full_name + text password_hash + text password_salt + datetime created_at + datetime updated_at + } + videos { + uuid id PK + uuid user_id FK + string name + string url + datetime created_at + datetime updated_at + } + users ||--o{ videos : have +``` ## 🏃‍♂️ Simple Start From d5c9ea251d76e9a45df9a20bc5b2724b105ef3a2 Mon Sep 17 00:00:00 2001 From: Oleksandra Nedashkivska Date: Thu, 29 Aug 2024 20:07:53 +0300 Subject: [PATCH 4/4] OV-88: + files to erd diagram --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2ee5041e7..eb8a13779 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,13 @@ erDiagram datetime created_at datetime updated_at } + files { + uuid id PK + string url + enum type "Values: 'video', 'photo'" + datetime created_at + datetime updated_at + } users ||--o{ videos : have ```