chatwoot/chatwoot

View on GitHub
app/javascript/dashboard/api/accountActions.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
/* global axios */

import ApiClient from './ApiClient';

class AccountActions extends ApiClient {
  constructor() {
    super('actions', { accountScoped: true });
  }

  merge(parentId, childId) {
    return axios.post(`${this.url}/contact_merge`, {
      base_contact_id: parentId,
      mergee_contact_id: childId,
    });
  }
}

export default new AccountActions();