Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2679 from pypeclub/feature/disable_cleanupfarm_by…
Browse files Browse the repository at this point in the history
…_default

General: Add settings for CleanUpFarm and disable the plugin by default
  • Loading branch information
antirotor authored Feb 8, 2022
2 parents c916a45 + 57a5a09 commit 1be9ff7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions openpype/settings/defaults/project_settings/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,9 @@
"CleanUp": {
"paterns": [],
"remove_temp_renders": false
},
"CleanUpFarm": {
"enabled": false
}
},
"tools": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,22 @@
"label": "Remove Temp renders",
"default": false
}

]
},
{
"type": "dict",
"collapsible": false,
"key": "CleanUpFarm",
"label": "Clean Up Farm",
"is_group": true,
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
}
]
}
]
}

0 comments on commit 1be9ff7

Please sign in to comment.