diff --git a/dist/bundle.js b/dist/bundle.js index 3c23615..d50d758 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -5364,6 +5364,8 @@ var THEMES = exports.THEMES = 'themes'; var AUTOMATIC_DARK_MODE_ENABLED = exports.AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled'; // mobile settings +var BACKGROUND_PLAY_ENABLED = exports.BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; +var FOREGROUND_NOTIFICATION_ENABLED = exports.FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; var KEEP_DAEMON_RUNNING = exports.KEEP_DAEMON_RUNNING = 'keepDaemonRunning'; /***/ }) diff --git a/src/constants/settings.js b/src/constants/settings.js index ca6652c..0c5f88b 100644 --- a/src/constants/settings.js +++ b/src/constants/settings.js @@ -14,4 +14,6 @@ export const THEMES = 'themes'; export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled'; // mobile settings +export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled'; +export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled'; export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';