fe2af370e0
* Feat: Show notes panel on CRM page Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class ContactNotes extends ApiClient {
|
|
constructor() {
|
|
super('contact_notes', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new ContactNotes();
|