Rename chat API endpoints

This commit is contained in:
valadaptive
2023-12-05 22:34:52 -05:00
parent 55d7bd6a87
commit 6efe95f4f1
4 changed files with 32 additions and 32 deletions

View File

@ -320,7 +320,7 @@ async function convertSoloToGroupChat() {
}
// Save group chat
const createChatResponse = await fetch('/savegroupchat', {
const createChatResponse = await fetch('/api/chats/group/save', {
method: 'POST',
headers: getRequestHeaders(),
body: JSON.stringify({ id: chatName, chat: groupChat }),