Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pyoaev/apis/injector.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@ class InjectorManager(GetMixin, ListMixin, CreateMixin, UpdateMixin, RESTManager
"injector_category",
"injector_executor_commands",
"injector_executor_clear_commands",
# Publisher/author of the injector's contracts, declared in the
# connector source code (not user config). The platform attributes
# every contract of this injector to an organization of this name.
"injector_author",
),
)
2 changes: 2 additions & 0 deletions pyoaev/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,8 @@ def __init__(self, config: OpenAEVConfigHelper, icon) -> None:
"injector_executor_clear_commands": config.get_conf(
"injector_executor_clear_commands", default=None
),
# Publisher/author of the injector's contracts (source-declared).
"injector_author": config.get_conf("injector_author", default=None),
Comment thread
SamuelHassine marked this conversation as resolved.
}

self.logger_class = utils.logger(
Expand Down
Loading