(self, obj: PythonModule)
| 186 | |
| 187 | @admin.display(description="Secrets") |
| 188 | def get_secrets(self, obj: PythonModule): |
| 189 | return list(obj.parameters.filter(is_secret=True).order_by("-name")) |
| 190 | |
| 191 | |
| 192 | class AbstractConfigAdminView(CustomAdminView): |
nothing calls this directly
no outgoing calls
no test coverage detected