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

17 lines
315 B
JavaScript
Raw Normal View History

2015-06-29 15:58:47 +02:00
'use strict';
import { altWhitelabel } from '../alt';
2015-06-29 15:58:47 +02:00
class WhitelabelActions {
constructor() {
this.generateActions(
'fetchWhitelabel',
'successFetchWhitelabel',
'errorWhitelabel'
2015-06-29 15:58:47 +02:00
);
}
}
export default altWhitelabel.createActions(WhitelabelActions);