From e3b8e8370e1582b881f11e51806489d0e2379614 Mon Sep 17 00:00:00 2001 From: Mark Schwerzler Date: Sun, 18 Aug 2024 19:41:27 -0400 Subject: [PATCH] Adding a new strategy for allowing automatic assignment without assigning the previously assigned user. --- src/views/ChoreEdit/ChoreEdit.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/ChoreEdit/ChoreEdit.jsx b/src/views/ChoreEdit/ChoreEdit.jsx index 9a61d9d..e84ecfd 100644 --- a/src/views/ChoreEdit/ChoreEdit.jsx +++ b/src/views/ChoreEdit/ChoreEdit.jsx @@ -42,6 +42,7 @@ const ASSIGN_STRATEGIES = [ 'least_assigned', 'least_completed', 'keep_last_assigned', + 'random_except_last_assigned' ] const REPEAT_ON_TYPE = ['interval', 'days_of_the_week', 'day_of_the_month']