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

Method secrets

api_app/models.py:1662–1669  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1660
1661 @property
1662 def secrets(self) -> QuerySet:
1663 """
1664 Returns the secret parameters associated with the plugin.
1665
1666 Returns:
1667 QuerySet: The queryset of secret parameters.
1668 """
1669 return self.parameters.filter(is_secret=True)
1670
1671 @property
1672 def required_parameters(self) -> QuerySet:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected