Chatwoot/app/javascript/dashboard/api/helpCenter/articles.js
Muhsin Keloth 6295f5fd61
feat: Add store to manage Articles (#5048)
Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
2022-07-27 12:29:11 +05:30

9 lines
184 B
JavaScript

import ApiClient from '../ApiClient';
class ArticlesAPI extends ApiClient {
constructor() {
super('articles', { accountScoped: true });
}
}
export default new ArticlesAPI();