fix: issue ordering for priority and updated_by parameters (#1142)
This commit is contained in:
parent
b6321438ce
commit
f80b3f1eb1
2 changed files with 42 additions and 4 deletions
|
|
@ -1,3 +1,6 @@
|
|||
# Django imports
|
||||
from django.utils import timezone
|
||||
|
||||
# Third Party imports
|
||||
from rest_framework import serializers
|
||||
|
||||
|
|
@ -251,6 +254,7 @@ class IssueCreateSerializer(BaseSerializer):
|
|||
batch_size=10,
|
||||
)
|
||||
|
||||
instance.updated_at = timezone.now()
|
||||
return super().update(instance, validated_data)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue