lbry-redux/src/constants/settings.js

20 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-01-11 12:54:20 +01:00
/* hardcoded names still exist for these in reducers/settings.js - only discovered when debugging */
/* Many SETTINGS are stored in the localStorage by their name -
be careful about changing the value of a SETTINGS constant, as doing so can invalidate existing SETTINGS */
export const CREDIT_REQUIRED_ACKNOWLEDGED = 'credit_required_acknowledged';
export const NEW_USER_ACKNOWLEDGED = 'welcome_acknowledged';
export const EMAIL_COLLECTION_ACKNOWLEDGED = 'email_collection_acknowledged';
export const LANGUAGE = 'language';
export const SHOW_NSFW = 'showNsfw';
export const SHOW_UNAVAILABLE = 'showUnavailable';
export const INSTANT_PURCHASE_ENABLED = 'instantPurchaseEnabled';
export const INSTANT_PURCHASE_MAX = 'instantPurchaseMax';
export const THEME = 'theme';
export const THEMES = 'themes';
2018-04-05 04:57:29 +02:00
export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
// mobile settings
export const BACKGROUND_PLAY_ENABLED = 'backgroundPlayEnabled';
export const FOREGROUND_NOTIFICATION_ENABLED = 'foregroundNotificationEnabled';
2018-04-05 04:57:29 +02:00
export const KEEP_DAEMON_RUNNING = 'keepDaemonRunning';