mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
fix typo
This commit is contained in:
parent
5cc1c01fc2
commit
c7d02eed81
3 changed files with 5 additions and 5 deletions
|
|
@ -115,7 +115,7 @@ class PushHierValuesToNonHier(ServerAction):
|
|||
job["status"] = "failed"
|
||||
session.commit()
|
||||
|
||||
def attrs_configurations(self, session, object_ids, interest_attributess):
|
||||
def attrs_configurations(self, session, object_ids, interest_attributes):
|
||||
attrs = session.query(self.cust_attrs_query.format(
|
||||
self.join_query_keys(interest_attributes),
|
||||
self.join_query_keys(object_ids)
|
||||
|
|
@ -169,10 +169,10 @@ class PushHierValuesToNonHier(ServerAction):
|
|||
for obj_type in destination_object_types
|
||||
)
|
||||
|
||||
interest_attributess = action_settings["interest_attributess"]
|
||||
interest_attributes = action_settings["interest_attributes"]
|
||||
# Find custom attributes definitions
|
||||
attrs_by_obj_id, hier_attrs = self.attrs_configurations(
|
||||
session, destination_object_type_ids, interest_attributess
|
||||
session, destination_object_type_ids, interest_attributes
|
||||
)
|
||||
# Filter destination object types if they have any object specific
|
||||
# custom attribute
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"Shot",
|
||||
"Asset Build"
|
||||
],
|
||||
"interest_attributess": [
|
||||
"interest_attributes": [
|
||||
"frameStart",
|
||||
"frameEnd"
|
||||
],
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@
|
|||
},
|
||||
{
|
||||
"type": "list",
|
||||
"key": "interest_attributess",
|
||||
"key": "interest_attributes",
|
||||
"label": "Attributes to sync",
|
||||
"object_type": {
|
||||
"type": "text",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue