10 lines
590 B
JavaScript
10 lines
590 B
JavaScript
/*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_INTRO_ACKNOWLEDGED = "credit_intro_acknowledged";
|
|
export const NEW_USER_ACKNOWLEDGED = "welcome_acknowledged";
|
|
export const LANGUAGE = "language";
|
|
export const SHOW_NSFW = "showNsfw";
|
|
export const SHOW_UNAVAILABLE = "showUnavailable";
|
|
export const THEME = "theme";
|
|
export const THEMES = "themes";
|