(self, request)
| 154 | |
| 155 | class InfoTaskView(TaskView): |
| 156 | def get(self, request): |
| 157 | |
| 158 | registry_url, username, _, _ = get_settings(request) |
| 159 | |
| 160 | return Response({ 'hubUrl': registry_url, 'username': username }, status=status.HTTP_200_OK) |
| 161 | |
| 162 | |
| 163 | class ImportDatasetTaskView(TaskView): |
no test coverage detected