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
{{ message }}
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.
@registry.adddefcomplete_task_if_everything_is_delegated(event):
if'is_completed'inevent.fields:
am_i_boolean=isinstance(event.fields['is_completed'].new_value, bool) # false, should be truetype_of_field=type(event.fields['is_completed'].new_value) # string, should be boolean
The text was updated successfully, but these errors were encountered:
Hi,
A boolean event.fields['field'].new_value is the wrong type in after_create (string instead of boolean).
Expected behavior:
event.fields['field'].new_value is a boolean in after_create.
Step to reproduce:
Example call:
http://localhost:6543/api/ressource/1?_m=PATCH&field=true
Field definition:
Processor:
The text was updated successfully, but these errors were encountered: