2017-01-09 23:09:23 +00:00
|
|
|
import * as ActionTypes from '../../../constants';
|
|
|
|
|
|
|
|
export function clearConsole() {
|
|
|
|
return {
|
|
|
|
type: ActionTypes.CLEAR_CONSOLE
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-01-11 19:13:49 +00:00
|
|
|
export function dispatchConsoleEvent(messages) {
|
2017-01-09 23:09:23 +00:00
|
|
|
return {
|
|
|
|
type: ActionTypes.CONSOLE_EVENT,
|
2017-01-11 19:13:49 +00:00
|
|
|
event: messages
|
2017-01-09 23:09:23 +00:00
|
|
|
};
|
|
|
|
}
|