Returns the non-secret parameters associated with the plugin. Returns: QuerySet: The queryset of non-secret parameters.
(self)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected