1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 00:28:00 +02:00
onion/js/actions/webhook_actions.js

20 lines
394 B
JavaScript
Raw Normal View History

2015-11-27 03:24:37 +01:00
'use strict';
import { alt } from '../alt';
class WebhookActions {
constructor() {
this.generateActions(
'fetchWebhooks',
'successFetchWebhooks',
'fetchWebhookEvents',
'successFetchWebhookEvents',
'removeWebhook',
'successRemoveWebhook'
2015-11-27 03:24:37 +01:00
);
}
}
export default alt.createActions(WebhookActions);