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

Method required_parameters

api_app/models.py:1672–1679  ·  view source on GitHub ↗

Returns the required parameters associated with the plugin. Returns: QuerySet: The queryset of required parameters.

(self)

Source from the content-addressed store, hash-verified

1670
1671 @property
1672 def required_parameters(self) -> QuerySet:
1673 """
1674 Returns the required parameters associated with the plugin.
1675
1676 Returns:
1677 QuerySet: The queryset of required parameters.
1678 """
1679 return self.parameters.filter(required=True)
1680
1681 @deprecated("Please use the queryset method `annotate_configured`.")
1682 def _is_configured(self, user: User = None) -> bool:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected