2
0
mirror of https://github.com/frappe/books.git synced 2024-11-08 23:00:56 +00:00

feat: setting to auto report errors (default off)

This commit is contained in:
18alantom 2022-01-19 16:42:50 +05:30
parent 3db454d380
commit c0beade500

View File

@ -97,6 +97,15 @@ module.exports = {
'Automatically checks for updates and download them if available. The update will be applied after you restart the app.'
),
},
{
fieldname: 'autoReportErrors',
label: 'Auto Report Errors',
fieldtype: 'Check',
default: 0,
description: _(
'Automatically report all errors. User will still be notified when an error pops up.'
),
},
],
quickEditFields: [
'dateFormat',
@ -104,5 +113,6 @@ module.exports = {
'displayPrecision',
'hideGetStarted',
'autoUpdate',
'autoReportErrors',
],
};