Fixed dataset import in an organization (#18)

main
Anastasia Yasakova 4 years ago committed by GitHub
parent e2ce6ce7d4
commit 5377973e86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Task creation progressbar bug (<https://github.com/cvat-ai/cvat/issues/12>) - Task creation progressbar bug (<https://github.com/cvat-ai/cvat/issues/12>)
- Removed Python dependency ``open3d`` which brought different issues to the building process - Removed Python dependency ``open3d`` which brought different issues to the building process
- Dataset import in an organization (<https://github.com/cvat-ai/cvat/pull/18>)
### Security ### Security
- TDB - TDB

@ -1552,6 +1552,7 @@ def load_dataset_data(project_annotation, dataset: Dataset, project_data):
'name': subset.name, 'name': subset.name,
'owner': project_annotation.db_project.owner, 'owner': project_annotation.db_project.owner,
'subset': subset.name, 'subset': subset.name,
'organization': project_annotation.db_project.organization,
} }
subset_dataset = subset.as_dataset() subset_dataset = subset.as_dataset()

Loading…
Cancel
Save