ваше сообщение коммита

This commit is contained in:
2025-07-18 11:59:17 +03:00
parent 2ca2827b7d
commit 1a4f2283b7
19 changed files with 5105 additions and 69 deletions

View File

@@ -42,6 +42,12 @@ export default {
withCredentials: true
});
return data;
},
async deleteMessagesHistory(userId) {
const { data } = await axios.delete(`/messages/history/${userId}`, {
withCredentials: true
});
return data;
}
};