# Set this if you want to have a different start day for the weekly meal plan view,
# leave empty to use CALENDAR_FIRST_DAY_OF_WEEK (see above)
# Needs to be a number where Sunday = 0, Monday = 1 and so forth
Setting('MEAL_PLAN_FIRST_DAY_OF_WEEK','');
# Default user settings
# These settings can be changed per user, here the defaults
# are defined which are used when the user has not changed the setting so far
# Night mode related
DefaultUserSetting('night_mode_enabled',false);// If night mode is enabled always
DefaultUserSetting('auto_night_mode_enabled',false);// If night mode is enabled automatically when inside a given time range (see the two settings below)
DefaultUserSetting('auto_night_mode_time_range_from',"20:00");// Format HH:mm
DefaultUserSetting('auto_night_mode_time_range_to',"07:00");// Format HH:mm
DefaultUserSetting('auto_night_mode_time_range_goes_over_midnight',true);// If the time range above goes over midnight
DefaultUserSetting('currently_inside_night_mode_range',false);// If we're currently inside of night mode time range (this is not user configurable, but stored as a user setting because it's evaluated client side to be able to use the client time instead of the maybe different server time)
# Keep screen on settings
DefaultUserSetting('keep_screen_on',false);// Keep the screen always on
DefaultUserSetting('keep_screen_on_when_fullscreen_card',false);// Keep the screen on when a "fullscreen-card" is displayed
# Stock settings
DefaultUserSetting('product_presets_location_id',-1);// Default location id for new products (-1 means no location is preset)
DefaultUserSetting('product_presets_product_group_id',-1);// Default product group id for new products (-1 means no product group is preset)
DefaultUserSetting('product_presets_qu_id',-1);// Default quantity unit id for new products (-1 means no quantity unit is preset)
DefaultUserSetting('shopping_list_to_stock_workflow_auto_submit_when_prefilled',false);// Automatically do the booking using the last price and the amount of the shopping list item, if the product has "Default best before days" set
Setting('FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_FIELD_NUMBER_PAD',true);// Activate the number pad in best-before-date fields on (supported) mobile browsers
Setting('FEATURE_SETTING_STOCK_COUNT_OPENED_PRODUCTS_AGAINST_MINIMUM_STOCK_AMOUNT',true);// When set to false, opened products will not be considered for minimum stock amounts
Setting('FEATURE_FLAG_AUTO_TORCH_ON_WITH_CAMERA',true);// Enables the torch automaticaly in every camera barcode scanner.