Chatwoot/app/javascript/dashboard/api/teams.js
Nithin David Thomas 6a614a520b
chore: Sets up store for teams settings page (#1727)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2021-02-04 13:19:59 +05:30

20 lines
432 B
JavaScript

/* global axios */
import ApiClient from './ApiClient';
export class TeamsAPI extends ApiClient {
constructor() {
super('teams', { accountScoped: true });
}
getAgents({ teamId }) {
return axios.get(`${this.url}/${teamId}/team_members`);
}
addAgents({ teamId, agentsList }) {
return axios.post(`${this.url}/${teamId}/team_members`, {
user_ids: agentsList,
});
}
}
export default new TeamsAPI();