From 8f565a50e633b54ea9a1e3e81ae5b8f3fcab0e71 Mon Sep 17 00:00:00 2001 From: tanishqsingla Date: Sat, 4 Mar 2023 20:21:34 +0530 Subject: [PATCH 1/4] feat: Add task request collection data model --- taskRequests/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 taskRequests/README.md diff --git a/taskRequests/README.md b/taskRequests/README.md new file mode 100644 index 0000000..d9e25b8 --- /dev/null +++ b/taskRequests/README.md @@ -0,0 +1,15 @@ +# Task Request + +Firestore Task Requests collection data model + +``` +id: , +taskId: , +title: string, +requestedBy: [string], +purpose: string, +type: string, +isNoteWorthy: boolean, +currentStatus: string, +approvedTo?: string, +``` From c8e0cd6604dc7d5f72b778e06691e2d36591de07 Mon Sep 17 00:00:00 2001 From: tanishqsingla Date: Sat, 11 Mar 2023 03:25:08 +0530 Subject: [PATCH 2/4] refactor: Update task requests collection model --- taskRequests/README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/taskRequests/README.md b/taskRequests/README.md index d9e25b8..b17056f 100644 --- a/taskRequests/README.md +++ b/taskRequests/README.md @@ -3,13 +3,15 @@ Firestore Task Requests collection data model ``` -id: , -taskId: , -title: string, -requestedBy: [string], -purpose: string, -type: string, -isNoteWorthy: boolean, -currentStatus: string, -approvedTo?: string, +{ + approvedTo?: string, + id: string, + isNoteworthy: boolean, + priority: "LOW" | "Normal" | "HIGH", + purpose: string, + requestedBy: string[], + status: "APPROVED" | "WAITING", + title: string, + type: "feature" | "bug", +} ``` From f89dbfdad1a7f3d62c8bc70b4f509bfd45d7ed24 Mon Sep 17 00:00:00 2001 From: tanishqsingla Date: Fri, 19 May 2023 02:45:24 +0530 Subject: [PATCH 3/4] fix: Update task request data model --- taskRequests/README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/taskRequests/README.md b/taskRequests/README.md index b17056f..f889ae8 100644 --- a/taskRequests/README.md +++ b/taskRequests/README.md @@ -6,12 +6,7 @@ Firestore Task Requests collection data model { approvedTo?: string, id: string, - isNoteworthy: boolean, - priority: "LOW" | "Normal" | "HIGH", - purpose: string, requestedBy: string[], status: "APPROVED" | "WAITING", - title: string, - type: "feature" | "bug", } ``` From 1b336bab91bd23b83b4933b970a456e95d3f8774 Mon Sep 17 00:00:00 2001 From: Tanishq Singla Date: Sat, 8 Jul 2023 18:33:21 +0530 Subject: [PATCH 4/4] Update Task Request key --- taskRequests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskRequests/README.md b/taskRequests/README.md index f889ae8..c64b177 100644 --- a/taskRequests/README.md +++ b/taskRequests/README.md @@ -6,7 +6,7 @@ Firestore Task Requests collection data model { approvedTo?: string, id: string, - requestedBy: string[], + requestors: string[], status: "APPROVED" | "WAITING", } ```