# HG changeset patch # User Sebastien Jodogne # Date 1754659749 -7200 # Node ID 624172833314f50ce7f8ed9486ff593a1062cc85 # Parent 95b22ee07bc31457ce6799acc185d150e900a243# Parent c41542e14885140bc894b98220c2c4fbab36748b integration default->inbox diff -r 95b22ee07bc3 -r 624172833314 Plugin/AuthorizationWebService.h --- a/Plugin/AuthorizationWebService.h Thu Jul 24 19:49:26 2025 +0200 +++ b/Plugin/AuthorizationWebService.h Fri Aug 08 15:29:09 2025 +0200 @@ -102,9 +102,10 @@ const std::string& tokenKey, const std::string& tokenValue) ORTHANC_OVERRIDE; - virtual bool GetSettingsRoles(Json::Value& roles); + virtual bool GetSettingsRoles(Json::Value& roles) ORTHANC_OVERRIDE; + virtual bool UpdateSettingsRoles(Json::Value& response, - const Json::Value& roles); + const Json::Value& roles) ORTHANC_OVERRIDE; static void ToJson(Json::Value& output, const UserProfile& profile); diff -r 95b22ee07bc3 -r 624172833314 Plugin/CachedAuthorizationService.h --- a/Plugin/CachedAuthorizationService.h Thu Jul 24 19:49:26 2025 +0200 +++ b/Plugin/CachedAuthorizationService.h Fri Aug 08 15:29:09 2025 +0200 @@ -110,12 +110,13 @@ tokenValue); } - virtual bool GetSettingsRoles(Json::Value& roles) + virtual bool GetSettingsRoles(Json::Value& roles) ORTHANC_OVERRIDE { return decorated_->GetSettingsRoles(roles); } - virtual bool UpdateSettingsRoles(Json::Value& response, const Json::Value& roles) + virtual bool UpdateSettingsRoles(Json::Value& response, + const Json::Value& roles) ORTHANC_OVERRIDE { return decorated_->UpdateSettingsRoles(response, roles); }