@@ -43,7 +43,7 @@ async def create_project_conversation(
4343 product_name = product_name ,
4444 user_id = user_id ,
4545 project_id = project_uuid ,
46- permission = "read " ,
46+ permission = "write " ,
4747 )
4848 return await conversations_service .create_conversation (
4949 app ,
@@ -95,7 +95,7 @@ async def update_project_conversation(
9595 product_name = product_name ,
9696 user_id = user_id ,
9797 project_id = project_uuid ,
98- permission = "read " ,
98+ permission = "write " ,
9999 )
100100 return await conversations_service .update_conversation (
101101 app ,
@@ -118,7 +118,7 @@ async def delete_project_conversation(
118118 product_name = product_name ,
119119 user_id = user_id ,
120120 project_id = project_uuid ,
121- permission = "read " ,
121+ permission = "write " ,
122122 )
123123 await conversations_service .delete_conversation (
124124 app ,
@@ -170,7 +170,7 @@ async def create_project_conversation_message(
170170 product_name = product_name ,
171171 user_id = user_id ,
172172 project_id = project_uuid ,
173- permission = "read " ,
173+ permission = "write " ,
174174 )
175175 return await conversations_service .create_message (
176176 app ,
@@ -224,7 +224,7 @@ async def update_project_conversation_message(
224224 product_name = product_name ,
225225 user_id = user_id ,
226226 project_id = project_uuid ,
227- permission = "read " ,
227+ permission = "write " ,
228228 )
229229 return await conversations_service .update_message (
230230 app ,
@@ -249,7 +249,7 @@ async def delete_project_conversation_message(
249249 product_name = product_name ,
250250 user_id = user_id ,
251251 project_id = project_uuid ,
252- permission = "read " ,
252+ permission = "write " ,
253253 )
254254 await conversations_service .delete_message (
255255 app ,
0 commit comments