mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-19 21:07:35 +08:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
import ApiClient from './ApiClient';
|
|
|
|
class ContactNotes extends ApiClient {
|
|
constructor() {
|
|
super('contact_notes', { accountScoped: true });
|
|
}
|
|
}
|
|
|
|
export default new ContactNotes();
|