16fe912fbd
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
17 lines
303 B
JavaScript
Executable file
17 lines
303 B
JavaScript
Executable file
const sendMessage = content => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: {
|
|
message: {
|
|
content,
|
|
},
|
|
},
|
|
});
|
|
|
|
const getConversation = () => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
});
|
|
|
|
export default {
|
|
sendMessage,
|
|
getConversation,
|
|
};
|