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
***NEW** Tasks now support tagging. Tags are useful for categorizing tasks and filtering them in the UI. See [Task Tags](data_model.md#tags) for more information.
13
+
14
+
**Python SDK**
15
+
16
+
***NEW** Support for tagging.
17
+
***NEW**`before_create` callback to allow modification of task data before it is created. This is useful for adding global tags and metadata to tasks such as the current tenant etc. See [Before Create Callback](python.md#before-create-callback) for more information.
key is present in the current scope as well as the data passed in directly, the value in the data passed
121
130
directly will be used. The same applies to tags.
122
131
132
+
## Before Create Callback
133
+
134
+
The `before_create` parameter in the `taskbadger.init` function allows you to define a function that will be called before a task is created. This function will be passed the task data as a dictionary and should return the modified task data.
0 commit comments