MCPcopy Create free account
hub / github.com/intelowlproject/IntelOwl / parameters

Method parameters

api_app/models.py:1460–1467  ·  view source on GitHub ↗

Returns the parameters associated with the plugin's configuration. Returns: ParameterQuerySet: The queryset of parameters.

(self)

Source from the content-addressed store, hash-verified

1458
1459 @property
1460 def parameters(self) -> ParameterQuerySet:
1461 """
1462 Returns the parameters associated with the plugin's configuration.
1463
1464 Returns:
1465 ParameterQuerySet: The queryset of parameters.
1466 """
1467 return Parameter.objects.filter(python_module=self.python_module)
1468
1469 @classproperty
1470 def report_class(cls) -> Type[AbstractReport]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected