Add due date & due date rease to webhooks
parent
8fbf4b8068
commit
ee862b0748
|
@ -345,6 +345,8 @@ class UserStorySerializer(CustomAttributesValuesWebhookSerializerMixin, serializ
|
||||||
created_date = Field()
|
created_date = Field()
|
||||||
modified_date = Field()
|
modified_date = Field()
|
||||||
finish_date = Field()
|
finish_date = Field()
|
||||||
|
due_date = Field()
|
||||||
|
due_date_reason = Field()
|
||||||
subject = Field()
|
subject = Field()
|
||||||
client_requirement = Field()
|
client_requirement = Field()
|
||||||
team_requirement = Field()
|
team_requirement = Field()
|
||||||
|
@ -394,6 +396,8 @@ class TaskSerializer(CustomAttributesValuesWebhookSerializerMixin, serializers.L
|
||||||
created_date = Field()
|
created_date = Field()
|
||||||
modified_date = Field()
|
modified_date = Field()
|
||||||
finished_date = Field()
|
finished_date = Field()
|
||||||
|
due_date = Field()
|
||||||
|
due_date_reason = Field()
|
||||||
subject = Field()
|
subject = Field()
|
||||||
us_order = Field()
|
us_order = Field()
|
||||||
taskboard_order = Field()
|
taskboard_order = Field()
|
||||||
|
@ -432,6 +436,8 @@ class IssueSerializer(CustomAttributesValuesWebhookSerializerMixin, serializers.
|
||||||
created_date = Field()
|
created_date = Field()
|
||||||
modified_date = Field()
|
modified_date = Field()
|
||||||
finished_date = Field()
|
finished_date = Field()
|
||||||
|
due_date = Field()
|
||||||
|
due_date_reason = Field()
|
||||||
subject = Field()
|
subject = Field()
|
||||||
external_reference = Field()
|
external_reference = Field()
|
||||||
watchers = MethodField()
|
watchers = MethodField()
|
||||||
|
|
Loading…
Reference in New Issue