From 290b8761067dc146d7befe5b3d45b4556be384b5 Mon Sep 17 00:00:00 2001 From: priyanshk20 Date: Thu, 3 Feb 2022 12:03:03 +0530 Subject: [PATCH 1/2] added new fields in task and contribution objects --- contributions/README.md | 4 +++- tasks/README.md | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/contributions/README.md b/contributions/README.md index 294cf89d..46d53fcb 100644 --- a/contributions/README.md +++ b/contributions/README.md @@ -34,7 +34,9 @@ } ], 'featureUrl': , - 'isNoteworthy': true + 'isNoteworthy': true, + 'isOther' : false, + 'id' : } } ``` diff --git a/tasks/README.md b/tasks/README.md index b0d3916f..f2887107 100644 --- a/tasks/README.md +++ b/tasks/README.md @@ -32,7 +32,8 @@ ], "completionAward": { dinero: 1500, neelam: 1 }, "lossRate": { dinero: 100 } // Loss per day of overshoot after deadline, - 'isNoteworthy': true + "isNoteworthy": true, + "isOther" : false } ``` From 99a3164159d63590f1b6ac3a2c36b2eec8133bce Mon Sep 17 00:00:00 2001 From: priyanshk20 Date: Tue, 22 Feb 2022 12:33:40 +0530 Subject: [PATCH 2/2] pushed id to the top --- contributions/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contributions/README.md b/contributions/README.md index 46d53fcb..f878aec5 100644 --- a/contributions/README.md +++ b/contributions/README.md @@ -13,6 +13,7 @@ 'raisedBy': }], task: { + 'id' : , 'title': , 'purpose': , 'endsOn': , @@ -35,8 +36,7 @@ ], 'featureUrl': , 'isNoteworthy': true, - 'isOther' : false, - 'id' : + 'isOther' : false } } ```