mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
* removed settings of IntegrateAssetNew * added 'active' to 'ValidateEditorialAssetName' plugin settings * removed unused 'families_to_review' setting from tvpain * implemented product name -> subset and product type -> family conversion * fixed most of conversion utils related to subsets * removed unused constants * anatomy templates are handling folder and product in templates * handle all possible template changes of asset, subest and family in settings * updated ayon api * updated fixed ayon api * added conversion functions for representations * fixed 'get_thumbnail' compatibility * use del to handle ayon mode in intput links * changed labels in UI based on AYON mode * updated ayon_api with 0.2.0 release code
18 lines
266 B
Python
18 lines
266 B
Python
# --- Folders ---
|
|
DEFAULT_FOLDER_FIELDS = {
|
|
"id",
|
|
"name",
|
|
"path",
|
|
"parentId",
|
|
"active",
|
|
"parents",
|
|
"thumbnailId"
|
|
}
|
|
|
|
REPRESENTATION_FILES_FIELDS = {
|
|
"files.name",
|
|
"files.hash",
|
|
"files.id",
|
|
"files.path",
|
|
"files.size",
|
|
}
|