Mobile settings constants added (#10)
* BACKGROUND_PLAY_ENABLED and FOREGROUND_NOTIFICATION_ENABLED mobile settings constants added
This commit is contained in:
parent
8c8c937ea7
commit
fa21fe153c
2 changed files with 4 additions and 0 deletions
2
dist/bundle.js
vendored
2
dist/bundle.js
vendored
|
@ -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';
|
||||
|
||||
/***/ })
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue