Проверка шаблона шины для iOS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- def isToggle(name, structure):
- # Проверяем наличие `toggle` в свойствах канала ядра.
- if name in structure.core.pipes:
- props = structure.core.pipes[name]
- if "toggle" in props:
- return True
-
- # Проверяем наличие `toggle` в свойствах канала сервиса.
- if name in structure.service.pipes:
- props = structure.service.pipes[name]
- if "toggle" in props:
- return True
-
- return False
|