(self, request)
| 822 | responses={200: PluginRepoSerializer(many=True)}, |
| 823 | ) |
| 824 | def get(self, request): |
| 825 | repos = PluginRepo.objects.all() |
| 826 | return Response(PluginRepoSerializer(repos, many=True).data) |
| 827 | |
| 828 | @extend_schema( |
| 829 | description="Add a new plugin repository by manifest URL. Fetches and validates the manifest immediately.", |
nothing calls this directly
no test coverage detected