From a22f378ed51dcd019531780524e58f531822c7dd Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Thu, 21 Aug 2025 15:10:03 +0200 Subject: [PATCH] added 'get_loader_action_plugin_paths' to 'IPluginPaths' --- client/ayon_core/addon/interfaces.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/ayon_core/addon/interfaces.py b/client/ayon_core/addon/interfaces.py index bf08ccd48c..cc7e39218e 100644 --- a/client/ayon_core/addon/interfaces.py +++ b/client/ayon_core/addon/interfaces.py @@ -185,6 +185,10 @@ class IPluginPaths(AYONInterface): """ return self._get_plugin_paths_by_type("inventory") + def get_loader_action_plugin_paths(self) -> list[str]: + """Receive loader action plugin paths.""" + return [] + class ITrayAddon(AYONInterface): """Addon has special procedures when used in Tray tool.