# HG changeset patch # User Alain Mazy # Date 1742814275 -3600 # Node ID 1ba6153bc891fc49d7865927c2c3dfbc7e24b6b2 # Parent e8feeebcf6432a7a346f351eeaf2ebd037719c63 new default permission to upload to /dicom-web/studies/ diff -r e8feeebcf643 -r 1ba6153bc891 NEWS --- a/NEWS Thu Feb 27 15:27:25 2025 +0100 +++ b/NEWS Mon Mar 24 12:04:35 2025 +0100 @@ -4,6 +4,8 @@ * The plugin is now using the HttpClient from the Orthanc core instead of its own HttpClient which should enable support for https since the plugin is not built with SSL support. +* New default permission to upload to ^/DICOM_WEB_ROOT/studies/([.0-9]+) + (https://orthanc.uclouvain.be/bugs/show_bug.cgi?id=244) 2025-02-27 - v 0.9.0 diff -r e8feeebcf643 -r 1ba6153bc891 Plugin/DefaultConfiguration.json --- a/Plugin/DefaultConfiguration.json Thu Feb 27 15:27:25 2025 +0100 +++ b/Plugin/DefaultConfiguration.json Mon Mar 24 12:04:35 2025 +0100 @@ -85,6 +85,7 @@ // uploads ["post", "^/instances$", "all|upload"], ["post" , "^/DICOM_WEB_ROOT/studies$", "all|upload"], + ["post" , "^/DICOM_WEB_ROOT/studies/([.0-9]+)", "all|upload"], // note: the user also needs to have access to the specific study ["post", "^/tools/create-dicom$", "all|upload"], ["post", "^/stl/encode-rtstruct$", "all|upload"], ["post", "^/stl/encode-nifti$", "all|upload"],