You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog/52_UNRELEASED_2019-xx-xx.md
+3
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,9 @@
12
12
- Recipe improvements
13
13
- Based on the new linked quantity units, recipe ingredients can now use any product related unit, the amount is calculated according to the cnoversion factor of the unit relation
14
14
- Chores improvements
15
+
- Chores can now be assigned to users
16
+
- Option per chore, different "assignment types" like "Random", "Who least did first", etc.
17
+
- On the chores overview page the list can be filterd to only show chores assigned to the currently logged in user
15
18
- New option "Due date rollover" per chore which means the chore can never be overdue, the due date will shift forward each day when due
16
19
- Equipment improvements/fixes
17
20
- Fixed that the delete button not always deleted the currently selected equipment item
"summary": "(Re)calculates all next user assignments of all chores",
2106
+
"tags": [
2107
+
"Chores"
2108
+
],
2109
+
"requestBody": {
2110
+
"required": false,
2111
+
"content": {
2112
+
"application/json": {
2113
+
"schema": {
2114
+
"type": "object",
2115
+
"properties": {
2116
+
"chore_id": {
2117
+
"type": "integer",
2118
+
"description": "The chore id of the chore which next user assignment should be (re)calculated, when omitted, the next user assignments of all chores will (re)caluclated"
2119
+
}
2120
+
},
2121
+
"example": {
2122
+
"chore_id": 1
2123
+
}
2124
+
}
2125
+
}
2126
+
}
2127
+
},
2128
+
"responses": {
2129
+
"204": {
2130
+
"description": "The operation was successful"
2131
+
},
2132
+
"400": {
2133
+
"description": "The operation was not successful",
0 commit comments