openreplay/frontend/app/duck/webhook.js
2021-05-01 15:12:01 +05:30

7 lines
275 B
JavaScript

import Webhook from 'Types/webhook';
import crudDuckGenerator from './tools/crudDuck';
const crudDuck = crudDuckGenerator('webhook', Webhook, { idKey: 'webhookId' });
export const { fetchList, init, edit, save, remove } = crudDuck.actions;
export default crudDuck.reducer;