Messaging system #150

Merged
tonitch merged 15 commits from tonitch/Clyde:msg into master 2024-04-09 17:08:59 +02:00
Showing only changes of commit 1c61a356a4 - Show all commits

View File

@ -36,7 +36,7 @@ export async function sendMessage(id, content, responseId){
content: content, content: content,
response: responseId, response: responseId,
} }
restPost("/discussion/" + id, data); restPost("/discussion/" + id, data).then(() => fetchDiscussion(id));
} }
export async function updateDiscussionName(id, name){ export async function updateDiscussionName(id, name){