import * as types from 'site/types' export const mute = () => dispatch => { dispatch({ type: types.site.mute_audio }) } export const unmute = () => dispatch => { dispatch({ type: types.site.unmute_audio }) }