From d72ab1448ea564d2773c6d7b39991e795c63a156 Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Thu, 27 Mar 2025 10:30:32 +1000 Subject: [PATCH] Add comment --- src/Api/AdminConsole/Context/ProviderOrganizationContext.cs | 2 ++ 1 file changed, 2 insertions(+) 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); } }