mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
'use strict';
|
|
|
|
import { altWhitelabel } from '../alt';
|
|
|
|
|
|
class WhitelabelActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'fetchWhitelabel',
|
|
'successFetchWhitelabel',
|
|
'errorWhitelabel'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default altWhitelabel.createActions(WhitelabelActions);
|