mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
dc0a8f965e
Aggiunge un checkbox nelle impostazioni utente per scegliere lo stile del catalogo (classico vs moderno) + flag globale catalog.classic.style in ui-config.json come default per tutti. Override per-utente in localStorage.
9 lines
445 B
TypeScript
9 lines
445 B
TypeScript
export class LocalStorageKeys
|
|
{
|
|
public static CATALOG_PLACE_MULTIPLE_OBJECTS: string = 'catalogPlaceMultipleObjects';
|
|
public static CATALOG_SKIP_PURCHASE_CONFIRMATION: string = 'catalogSkipPurchaseConfirmation';
|
|
public static CHAT_WINDOW_ENABLED: string = 'chatWindowEnabled';
|
|
public static CHAT_TRANSLATION_SETTINGS: string = 'chatTranslationSettings';
|
|
public static CATALOG_CLASSIC_STYLE: string = 'catalogClassicStyle';
|
|
}
|