mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Merge pull request #1369 from BigRoy/enhancement/validate_product_uniqueness_skip_non_integratable
Validate Product Uniqueness: Skip instances with integrate = false
This commit is contained in:
commit
e665e5ca2b
1 changed files with 5 additions and 1 deletions
|
|
@ -34,7 +34,11 @@ class ValidateProductUniqueness(pyblish.api.ContextPlugin):
|
|||
for instance in context:
|
||||
|
||||
# Ignore disabled instances
|
||||
if not instance.data.get('publish', True):
|
||||
if not instance.data.get("publish", True):
|
||||
continue
|
||||
|
||||
# Ignore instances not marked to integrate
|
||||
if not instance.data.get("integrate", True):
|
||||
continue
|
||||
|
||||
# Ignore instance without folder data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue