mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
* 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
19 lines
335 B
JavaScript
Executable File
19 lines
335 B
JavaScript
Executable File
const sendMessage = content => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: {
|
|
message: {
|
|
content,
|
|
},
|
|
},
|
|
});
|
|
|
|
const getConversation = ({ before }) => ({
|
|
url: `/api/v1/widget/messages${window.location.search}`,
|
|
params: { before },
|
|
});
|
|
|
|
export default {
|
|
sendMessage,
|
|
getConversation,
|
|
};
|