mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
convert ftrack settings
This commit is contained in:
parent
0b193a8dac
commit
647053273e
2 changed files with 122 additions and 19 deletions
73
pype/settings/defaults/project_settings/Ftrack.json
Normal file
73
pype/settings/defaults/project_settings/Ftrack.json
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{
|
||||
"ftrack_actions_path": [],
|
||||
"ftrack_events_path": [],
|
||||
"events": {
|
||||
"status_update": {
|
||||
"enabled": true,
|
||||
"mapping": {
|
||||
"In Progress": [
|
||||
"__any__"
|
||||
],
|
||||
"Ready": [
|
||||
"Not Ready"
|
||||
],
|
||||
"__ignore__": [
|
||||
"in prgoress",
|
||||
"omitted",
|
||||
"on hold"
|
||||
]
|
||||
}
|
||||
},
|
||||
"status_task_to_parent": {
|
||||
"enabled": true,
|
||||
"parent_status_match_all_task_statuses": {
|
||||
"Completed": [
|
||||
"Approved",
|
||||
"Omitted"
|
||||
]
|
||||
},
|
||||
"parent_status_by_task_status": {
|
||||
"In Progress": [
|
||||
"in progress",
|
||||
"change requested",
|
||||
"retake",
|
||||
"pending review"
|
||||
]
|
||||
}
|
||||
},
|
||||
"status_task_to_version": {
|
||||
"enabled": true,
|
||||
"mapping": {
|
||||
"Approved": [
|
||||
"Complete"
|
||||
]
|
||||
}
|
||||
},
|
||||
"status_version_to_task": {
|
||||
"enabled": true,
|
||||
"mapping": {
|
||||
"Complete": [
|
||||
"Approved",
|
||||
"Complete"
|
||||
]
|
||||
}
|
||||
},
|
||||
"first_version_status": {
|
||||
"enabled": true,
|
||||
"status": ""
|
||||
},
|
||||
"next_task_update": {
|
||||
"enabled": true,
|
||||
"mapping": {
|
||||
"Ready": "Not Ready"
|
||||
}
|
||||
}
|
||||
},
|
||||
"publish": {
|
||||
"IntegrateFtrackNote": {
|
||||
"enabled": true,
|
||||
"note_with_intent_template": "",
|
||||
"note_labels": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
{
|
||||
"type": "dict",
|
||||
"key": "status_update",
|
||||
"label": "Status Updates",
|
||||
"label": "Update status on task action",
|
||||
"checkbox_key": "enabled",
|
||||
"children": [{
|
||||
"type": "boolean",
|
||||
|
|
@ -44,20 +44,12 @@
|
|||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"key": "statuses",
|
||||
"type": "dict-invisible",
|
||||
"children": [
|
||||
{
|
||||
"key": "default",
|
||||
"type": "text",
|
||||
"label": "complete"
|
||||
},
|
||||
{
|
||||
"key": "default2",
|
||||
"type": "text",
|
||||
"label": "in progress"
|
||||
}
|
||||
]
|
||||
"key": "mapping",
|
||||
"type": "dict-modifiable",
|
||||
"object_type": {
|
||||
"type": "list",
|
||||
"object_type": "text"
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
|
@ -69,6 +61,24 @@
|
|||
"type": "boolean",
|
||||
"key": "enabled",
|
||||
"label": "Enabled"
|
||||
},
|
||||
{
|
||||
"key": "parent_status_match_all_task_statuses",
|
||||
"type": "dict-modifiable",
|
||||
"label": "Change parent if all tasks match",
|
||||
"object_type": {
|
||||
"type": "list",
|
||||
"object_type": "text"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "parent_status_by_task_status",
|
||||
"type": "dict-modifiable",
|
||||
"label": "Change parent status if a single task matches",
|
||||
"object_type": {
|
||||
"type": "list",
|
||||
"object_type": "text"
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
|
@ -80,6 +90,13 @@
|
|||
"type": "boolean",
|
||||
"key": "enabled",
|
||||
"label": "Enabled"
|
||||
}, {
|
||||
"type": "dict-modifiable",
|
||||
"key": "mapping",
|
||||
"object_type": {
|
||||
"type": "list",
|
||||
"object_type": "text"
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
|
@ -93,9 +110,11 @@
|
|||
"label": "Enabled"
|
||||
}, {
|
||||
"type": "dict-modifiable",
|
||||
"key": "statuses",
|
||||
"label": "statuses",
|
||||
"object_type": "text"
|
||||
"key": "mapping",
|
||||
"object_type": {
|
||||
"type": "list",
|
||||
"object_type": "text"
|
||||
}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
|
@ -107,7 +126,12 @@
|
|||
"type": "boolean",
|
||||
"key": "enabled",
|
||||
"label": "Enabled"
|
||||
}]
|
||||
},{
|
||||
"type": "text",
|
||||
"key": "status",
|
||||
"label": "Status"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "dict",
|
||||
|
|
@ -118,6 +142,12 @@
|
|||
"type": "boolean",
|
||||
"key": "enabled",
|
||||
"label": "Enabled"
|
||||
},{
|
||||
"type": "dict-modifiable",
|
||||
"key": "mapping",
|
||||
"object_type": {
|
||||
"type": "text"
|
||||
}
|
||||
}]
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue