Skip to content

Commit

Permalink
feat: use queue project uuid instead of just project uuid (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
helllllllder authored Oct 17, 2024
1 parent 9d84064 commit b3b2fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chats/apps/api/v1/external/rooms/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def create(self, validated_data):

room = Room.objects.create(
**validated_data,
project_uuid=str(project.uuid),
project_uuid=str(queue.project.uuid),
contact=contact,
queue=queue,
protocol=protocol,
Expand Down

0 comments on commit b3b2fb6

Please sign in to comment.