Skip to content

Commit

Permalink
Change dwas import route to POST for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
willdunklin committed Oct 17, 2023
1 parent 3d06350 commit 03810e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/dicom/large_image_source_dicom/assetstore/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DICOMwebAssetstoreResource(Resource):
def __init__(self):
super().__init__()
self.resourceName = 'dicomweb_assetstore'
self.route('PUT', (':id', 'import'), self.importData)
self.route('POST', (':id', 'import'), self.importData)

def _importData(self, assetstore, params):
"""
Expand Down

0 comments on commit 03810e7

Please sign in to comment.