0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-10 02:42:43 +00:00

Remove comments

This commit is contained in:
G.Ambatte
2024-09-16 19:15:16 +12:00
parent 7a2fecf502
commit ae7404eb1f

View File

@@ -1,16 +1,17 @@
export const HISTORY_PREFIX = 'HOMEBREWERY-HISTORY'; export const HISTORY_PREFIX = 'HOMEBREWERY-HISTORY';
export const HISTORY_SLOTS = 5; export const HISTORY_SLOTS = 5;
// History values in minutes
const DEFAULT_HISTORY_SAVE_DELAYS = { const DEFAULT_HISTORY_SAVE_DELAYS = {
'0' : 0, // 0 minutes (if not specified) '0' : 0,
'1' : 2, // 2 minutes '1' : 2,
'2' : 10, // 10 minutes '2' : 10,
'3' : 60, // 60 minutes '3' : 60,
'4' : 12 * 60, // 12 hours '4' : 12 * 60,
'5' : 2 * 24 * 60 // 2 days '5' : 2 * 24 * 60
}; };
const DEFAULT_GARBAGE_COLLECT_DELAY = 28 * 24 * 60; // 28 days const DEFAULT_GARBAGE_COLLECT_DELAY = 28 * 24 * 60;
const DEFAULT_STORED_BREW = { const DEFAULT_STORED_BREW = {
shareId : 'default_brew', shareId : 'default_brew',