mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
* Delete inbox avatar 1) New API endpoint added for deleting inbox avatar. 2) Delete avatar button in the inbox settings page. Co-authored-by: Sojan Jose <[email protected]> Co-authored-by: Muhsin Keloth <[email protected]>
23 lines
480 B
JavaScript
23 lines
480 B
JavaScript
/* global axios */
|
|
import ApiClient from './ApiClient';
|
|
|
|
class Inboxes extends ApiClient {
|
|
constructor() {
|
|
super('inboxes', { accountScoped: true });
|
|
}
|
|
|
|
getAssignableAgents(inboxId) {
|
|
return axios.get(`${this.url}/${inboxId}/assignable_agents`);
|
|
}
|
|
|
|
getCampaigns(inboxId) {
|
|
return axios.get(`${this.url}/${inboxId}/campaigns`);
|
|
}
|
|
|
|
deleteInboxAvatar(inboxId) {
|
|
return axios.delete(`${this.url}/${inboxId}/avatar`);
|
|
}
|
|
}
|
|
|
|
export default new Inboxes();
|