Allow default project workflow to be set via settings

This commit is contained in:
Nick O'Leary
2020-11-18 12:02:45 +00:00
parent c6129b44a1
commit 81f200641b
3 changed files with 16 additions and 3 deletions

View File

@@ -290,7 +290,15 @@ module.exports = {
editorTheme: {
projects: {
// To enable the Projects feature, set this value to true
enabled: false
enabled: false,
workflow: {
// Set the default projects workflow mode.
// - manual - you must manually commit changes
// - auto - changes are automatically committed
// This can be overridden per-user from the 'Git config'
// section of 'User Settings' within the editor
mode: "manual"
}
}
}
}