24 lines
510 B
JavaScript
24 lines
510 B
JavaScript
/* global axios */
|
|
import ApiClient from '../ApiClient';
|
|
|
|
class FBChannel extends ApiClient {
|
|
constructor() {
|
|
super('facebook_indicators');
|
|
}
|
|
|
|
markSeen({ inboxId, contactId }) {
|
|
return axios.post(`${this.url}/mark_seen`, {
|
|
inbox_id: inboxId,
|
|
contact_id: contactId,
|
|
});
|
|
}
|
|
|
|
toggleTyping({ status, inboxId, contactId }) {
|
|
return axios.post(`${this.url}/typing_${status}`, {
|
|
inbox_id: inboxId,
|
|
contact_id: contactId,
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new FBChannel();
|