2017-12-21 18:32:51 +01:00
|
|
|
/* 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';
|
2019-01-27 01:23:47 +01:00
|
|
|
export const INVITE_ACKNOWLEDGED = 'invite_acknowledged';
|
2017-12-21 18:32:51 +01:00
|
|
|
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-01-14 10:14:15 +01:00
|
|
|
export const AUTOMATIC_DARK_MODE_ENABLED = 'automaticDarkModeEnabled';
|
2018-04-30 17:27:20 +02:00
|
|
|
export const AUTOPLAY = 'autoplay';
|
2018-06-19 05:36:15 +02:00
|
|
|
export const RESULT_COUNT = 'resultCount';
|
2018-08-01 20:49:57 +02:00
|
|
|
export const OS_NOTIFICATIONS_ENABLED = 'osNotificationsEnabled';
|
2018-08-10 16:51:51 +02:00
|
|
|
export const AUTO_DOWNLOAD = 'autoDownload';
|
2019-07-19 22:21:41 +02:00
|
|
|
export const SUPPORT_OPTION = 'supportOption';
|
2019-07-29 17:37:29 +02:00
|
|
|
export const HIDE_BALANCE = 'hideBalance';
|
2019-08-08 22:30:03 +02:00
|
|
|
export const HIDE_SPLASH_ANIMATION = 'hideSplashAnimation';
|