1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/packages/unleash-frontend/public/js/stores/ErrorActions.js

11 lines
156 B
JavaScript
Raw Normal View History

2016-06-18 21:53:18 +02:00
'use strict';
2016-10-26 10:43:11 +02:00
2016-06-18 21:53:18 +02:00
const Reflux = require('reflux');
2015-03-17 20:29:03 +01:00
2016-06-18 21:53:18 +02:00
const ErrorActions = Reflux.createActions([
2016-06-18 21:55:46 +02:00
'clear',
'error',
2015-03-17 20:29:03 +01:00
]);
module.exports = ErrorActions;