diff --git a/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs b/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs index 98dec42d26..e072a9fe38 100644 --- a/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs +++ b/src/Api/AdminConsole/Context/ProviderOrganizationContext.cs @@ -14,6 +14,8 @@ public class ProviderOrganizationContext(ICurrentContext currentContext) : IProv return false; } + // This is just a wrapper around CurrentContext for now, but once permission checks are moved out of that class + // we should be able to move the underlying logic here without causing circular dependencies. return await currentContext.ProviderUserForOrgAsync(orgId); } }