Skip to content

Commit

Permalink
feature: passing project uuid as str
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanJaeger committed Nov 27, 2024
1 parent cde3bde commit f86f728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chats/apps/projects/usecases/send_room_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def __init__(self):

def get_room(self, room: Room):
room_dto = {
"project_uuid": room.project.uuid,
"project_uuid": str(room.project.uuid),
"external_id": room.contact.external_id,
"created_on": room.created_on.isoformat(),
}
Expand Down

0 comments on commit f86f728

Please sign in to comment.