From 47c89d838f8f34a4656ed2739d95eb16c865b238 Mon Sep 17 00:00:00 2001 From: AJ Date: Thu, 21 Nov 2024 12:28:03 -0500 Subject: [PATCH] add NotSelfHostOnly attribute --- src/Api/Billing/Public/Controllers/OrganizationController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Api/Billing/Public/Controllers/OrganizationController.cs b/src/Api/Billing/Public/Controllers/OrganizationController.cs index 5f9c3cf7f942..c0601413e050 100644 --- a/src/Api/Billing/Public/Controllers/OrganizationController.cs +++ b/src/Api/Billing/Public/Controllers/OrganizationController.cs @@ -37,6 +37,7 @@ public OrganizationController( } [HttpGet("subscription")] + [SelfHosted(NotSelfHostedOnly = true)] [ProducesResponseType(typeof(OrganizationSubscriptionDetailsResponseModel), (int)HttpStatusCode.OK)] [ProducesResponseType(typeof(ErrorResponseModel), (int)HttpStatusCode.NotFound)] public async Task GetSubscriptionAsync()