7fcd2d0e85
- Adds support for file upload Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com> Co-authored-by: Sojan <sojan@pepalo.com>
34 lines
829 B
JavaScript
34 lines
829 B
JavaScript
/* eslint no-console: 0 */
|
|
/* global axios */
|
|
import ApiClient from '../ApiClient';
|
|
|
|
class MessageApi extends ApiClient {
|
|
constructor() {
|
|
super('conversations', { accountScoped: true });
|
|
}
|
|
|
|
create({ conversationId, message, private: isPrivate }) {
|
|
return axios.post(`${this.url}/${conversationId}/messages`, {
|
|
message,
|
|
private: isPrivate,
|
|
});
|
|
}
|
|
|
|
getPreviousMessages({ conversationId, before }) {
|
|
return axios.get(`${this.url}/${conversationId}/messages`, {
|
|
params: { before },
|
|
});
|
|
}
|
|
|
|
sendAttachment([conversationId, { file }]) {
|
|
const formData = new FormData();
|
|
formData.append('attachment[file]', file);
|
|
return axios({
|
|
method: 'post',
|
|
url: `${this.url}/${conversationId}/messages`,
|
|
data: formData,
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new MessageApi();
|