(self, request: Request)
| 303 | tags=[_("Application")] # type: ignore |
| 304 | ) |
| 305 | def get(self, request: Request): |
| 306 | return result.success(ApplicationSerializer.StoreApplication(data={ |
| 307 | 'user_id': request.user.id, |
| 308 | 'name': request.query_params.get('name', ''), |
| 309 | }).get_appstore_templates()) |
| 310 | |
| 311 | class BatchDelete(APIView): |
| 312 | authentication_classes = [TokenAuth] |
nothing calls this directly
no test coverage detected