quintodrome/ui/src/actions/settings.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
172 B
JavaScript
Raw Normal View History

2020-11-19 19:06:09 -09:00
export const SET_NOTIFICATIONS_STATE = 'SET_NOTIFICATIONS_STATE'
export const setNotificationsState = (enabled) => ({
type: SET_NOTIFICATIONS_STATE,
data: enabled,
})