result can contain form values

This allows to re-open the same dialog having the same default values but with values already filled from user
This commit is contained in:
Jakub Trllo 2025-08-22 11:46:27 +02:00
parent e30738d79b
commit 8bdfe806e0

View file

@ -373,6 +373,7 @@ class LoaderActionResult:
message: Optional[str] = None
success: bool = True
form: Optional[LoaderActionForm] = None
form_values: Optional[dict[str, Any]] = None
class LoaderActionPlugin(ABC):