summaryrefslogtreecommitdiff
path: root/frontend/site/audio/audio.actions.js
blob: 0b0b44b1f4150f2a9edeaf13489430647a52f993 (plain)
1
2
3
4
5
6
7
8
9
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 })
}