2b41e91768
* Fetch previous messages in the conversation * Add specs for conversation store * Fix codeclimate issues * Exclude specs folder * Exclude globally * Fix path in exclude patterns * Add endPoints spec * Add snapshots for Spinner * Add specs for actions
16 lines
515 B
JavaScript
Executable file
16 lines
515 B
JavaScript
Executable file
import endPoints from 'widget/api/endPoints';
|
|
import { API } from 'widget/helpers/axios';
|
|
|
|
const sendMessageAPI = async content => {
|
|
const urlData = endPoints.sendMessage(content);
|
|
const result = await API.post(urlData.url, urlData.params);
|
|
return result;
|
|
};
|
|
|
|
const getConversationAPI = async ({ before }) => {
|
|
const urlData = endPoints.getConversation({ before });
|
|
const result = await API.get(urlData.url, { params: urlData.params });
|
|
return result;
|
|
};
|
|
|
|
export { sendMessageAPI, getConversationAPI };
|