mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
do not skip applications without host implementation
This commit is contained in:
parent
f2a9543712
commit
5f30e92e13
1 changed files with 7 additions and 2 deletions
|
|
@ -263,8 +263,14 @@ class HostsEnumEntity(BaseEnumEntity):
|
|||
|
||||
|
||||
class AppsEnumEntity(BaseEnumEntity):
|
||||
"""Enum of applications for project anatomy attributes."""
|
||||
schema_types = ["apps-enum"]
|
||||
|
||||
_skip_app_groups = [
|
||||
# DJV make sense to be launched on representation level
|
||||
"djvview"
|
||||
]
|
||||
|
||||
def _item_initialization(self):
|
||||
self.multiselection = True
|
||||
self.value_on_not_set = []
|
||||
|
|
@ -284,8 +290,7 @@ class AppsEnumEntity(BaseEnumEntity):
|
|||
if enabled_entity and not enabled_entity.value:
|
||||
continue
|
||||
|
||||
host_name_entity = app_group.get("host_name")
|
||||
if not host_name_entity or not host_name_entity.value:
|
||||
if app_group.key in self._skip_app_groups:
|
||||
continue
|
||||
|
||||
group_label = app_group["label"].value
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue