4398734bdf
* feat: Adds the ability to save custom filters and display folders on the sidebar * Minor fixes * Review fixes * Review fixes * i18n fixes * Shows conversations when the user click on the folder sidebar item * Spacing fixes * Review fixes Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com>
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
/* global axios */
|
|
import ApiClient from './ApiClient';
|
|
|
|
class CustomViewsAPI extends ApiClient {
|
|
constructor() {
|
|
super('custom_filters', { accountScoped: true });
|
|
}
|
|
|
|
getCustomViews() {
|
|
return axios.get(this.url);
|
|
}
|
|
}
|
|
|
|
export default new CustomViewsAPI();
|