1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Desktop, CLI: Added option to disable creation of welcome items

This commit is contained in:
Laurent Cozic
2019-05-12 01:10:46 +01:00
parent 9c85bc2cd1
commit 553a26eb63
4 changed files with 15 additions and 1 deletions

View File

@ -201,6 +201,7 @@ class Setting extends BaseModel {
'revisionService.oldNoteInterval': { section: 'revisionService', value: 1000 * 60 * 60 * 24 * 7, type: Setting.TYPE_INT, public: false },
'welcome.wasBuilt': { value: false, type: Setting.TYPE_BOOL, public: false },
'welcome.enabled': { value: true, type: Setting.TYPE_BOOL, public: false },
};
return this.metadata_;