Compare commits
2 Commits
36df498e08
...
4ef834570e
| Author | SHA1 | Date |
|---|---|---|
|
|
4ef834570e | |
|
|
0c1a7a4f60 |
|
|
@ -94,7 +94,7 @@ class TicketSimpleSerializer(CustomModelSerializer):
|
|||
|
||||
|
||||
class TicketCreateSerializer(CustomModelSerializer):
|
||||
transition = serializers.PrimaryKeyRelatedField(queryset=Transition.objects.all(), write_only=True, allow_null=True)
|
||||
transition = serializers.PrimaryKeyRelatedField(queryset=Transition.objects.all(), write_only=True, allow_null=True, required=False)
|
||||
title = serializers.CharField(allow_blank=True, required=False)
|
||||
|
||||
class Meta:
|
||||
|
|
|
|||
Loading…
Reference in New Issue