Chatwoot/app/javascript/dashboard/api/contactNotes.js
Nithin David Thomas fe2af370e0
Feat: Show notes panel on crm page (#2320)
* Feat: Show notes panel on CRM page

Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
2021-06-14 09:49:17 +05:30

9 lines
190 B
JavaScript

import ApiClient from './ApiClient';
class ContactNotes extends ApiClient {
constructor() {
super('contact_notes', { accountScoped: true });
}
}
export default new ContactNotes();