UNPKG

make-shift-brew-ui

Version:

Common User Interface for the Brewfactory projects, modified for MakeShift Aleworks

18 lines (13 loc) 419 B
'use strict'; var debug = require('debug')('BrewUI:action'); var BrewConstants = require('../../constants/BrewConstants'); module.exports = function (context, payload) { var brew = { name: payload.name, phases: payload.phases, startTime: payload.startTime, paused: payload.paused }; debug('dispatching RECEIVE_BREW', brew); context.dispatch(BrewConstants.ActionTypes.RECEIVE_BREW, brew); };