From d9703a0b01b0ba31fc9c02d3b28f21ea94f7068a Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Fri, 4 Oct 2024 13:59:35 -0400 Subject: [PATCH] Unblock `PutCollectionManagement` for self host --- src/Api/AdminConsole/Controllers/OrganizationsController.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Api/AdminConsole/Controllers/OrganizationsController.cs b/src/Api/AdminConsole/Controllers/OrganizationsController.cs index e5dbcd10b1a1..e808c6133085 100644 --- a/src/Api/AdminConsole/Controllers/OrganizationsController.cs +++ b/src/Api/AdminConsole/Controllers/OrganizationsController.cs @@ -514,7 +514,6 @@ public async Task PostSso(Guid id, [FromBody] Orga } [HttpPut("{id}/collection-management")] - [SelfHosted(NotSelfHostedOnly = true)] public async Task PutCollectionManagement(Guid id, [FromBody] OrganizationCollectionManagementUpdateRequestModel model) { var organization = await _organizationRepository.GetByIdAsync(id);