From 49578577acf5c61b0938e67567aabf9197a4d13f Mon Sep 17 00:00:00 2001 From: Bharati Subramanian <51514137+bharati-21@users.noreply.github.com> Date: Tue, 25 Apr 2023 00:53:18 +0530 Subject: [PATCH] Refactor: firestore tasks collection model (#33) * refactor: firestore tasks collection model Include GitHub issue details in the Firestore task collection model * refactor docs: removed assigneeRdsInfo from model * refactor: add GitHub issue status values --- tasks/README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tasks/README.md b/tasks/README.md index 104f86c..b41a219 100644 --- a/tasks/README.md +++ b/tasks/README.md @@ -25,7 +25,15 @@ Firestore Tasks collection data model isCollapsed: boolean, createdBy: string, assignee: string, - participants: [userId, userId] + participants: [userId, userId], + github: { + issue: { + status: "closed | open", + assignee: string, + id: number, + closedAt: string + } + } } -``` \ No newline at end of file +```