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

Method options

api_app/models.py:1652–1659  ·  view source on GitHub ↗

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

(self)

Source from the content-addressed store, hash-verified

1650
1651 @property
1652 def options(self) -> QuerySet:
1653 """
1654 Returns the non-secret parameters associated with the plugin.
1655
1656 Returns:
1657 QuerySet: The queryset of non-secret parameters.
1658 """
1659 return self.parameters.filter(is_secret=False)
1660
1661 @property
1662 def secrets(self) -> QuerySet:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected