# HG changeset patch # User Alain Mazy # Date 1758697943 -7200 # Node ID aea5fcc2b7412c9d41bc5c3e43e0c4e6a041018b # Parent 0b0222d3a7f9b839a29799dca3672152b471786b new standard configuration 'stl' diff -r 0b0222d3a7f9 -r aea5fcc2b741 NEWS --- a/NEWS Thu Aug 28 09:46:10 2025 +0200 +++ b/NEWS Wed Sep 24 09:12:23 2025 +0200 @@ -3,6 +3,7 @@ * New default permissions to add/delete modalities through the Rest API https://discourse.orthanc-server.org/t/managing-modalities-using-the-rest-api-and-keycloak/6137 +* New standard configuration "stl" 2025-08-13 - v 0.10.1 diff -r 0b0222d3a7f9 -r aea5fcc2b741 Plugin/DefaultConfiguration.json --- a/Plugin/DefaultConfiguration.json Thu Aug 28 09:46:10 2025 +0200 +++ b/Plugin/DefaultConfiguration.json Wed Sep 24 09:12:23 2025 +0200 @@ -44,7 +44,8 @@ // "stone-webviewer", // "orthanc-explorer-2", // "ohif", - // "volview" + // "volview", + // "stl" // ], //"UncheckedResources" : [], diff -r 0b0222d3a7f9 -r aea5fcc2b741 Plugin/Plugin.cpp --- a/Plugin/Plugin.cpp Thu Aug 28 09:46:10 2025 +0200 +++ b/Plugin/Plugin.cpp Wed Sep 24 09:12:23 2025 +0200 @@ -2357,6 +2357,13 @@ tokens_.insert(OrthancPlugins::Token(OrthancPlugins::TokenType_HttpHeader, "Authorization")); } + if (standardConfigurations.find("stl") != standardConfigurations.end()) + { + uncheckedFolders_.push_back("/stl/"); + + tokens_.insert(OrthancPlugins::Token(OrthancPlugins::TokenType_HttpHeader, "Authorization")); + } + } std::string checkedLevelString;