Skip to content

Commit

Permalink
Update importData param defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
willdunklin committed Oct 17, 2023
1 parent 750884d commit 15cca3a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions sources/dicom/large_image_source_dicom/assetstore/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,11 @@ def _importData(self, assetstore, params):
.param('destinationId', 'The ID of the parent folder, collection, or user '
'in the Girder data hierarchy under which to import the files.')
.param('destinationType', 'The type of the parent object to import into.',
enum=('folder', 'user', 'collection'),
required=False)
enum=('folder', 'user', 'collection'), required=True)
.param('filters', 'Any search parameters to filter DICOM objects.',
required=False)
required=False, default={})
.param('progress', 'Whether to record progress on this operation ('
'default=False)', required=False, dataType='boolean')
'default=False)', required=False, default=False, dataType='boolean')
.errorResponse()
.errorResponse('You are not an administrator.', 403),
)
Expand Down

0 comments on commit 15cca3a

Please sign in to comment.