mirror of
https://github.com/navidrome/navidrome.git
synced 2025-08-10 00:52:20 +00:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
export const SET_NOTIFICATIONS_STATE = 'SET_NOTIFICATIONS_STATE'
|
|
|
|
export const setNotificationsState = (enabled) => ({
|
|
type: SET_NOTIFICATIONS_STATE,
|
|
data: enabled,
|
|
})
|