1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

PM-17954 changing import permissions around based on requirements (#5385)

Co-authored-by: Daniel James Smith <2670567+djsmith85@users.noreply.github.com>
This commit is contained in:
Graham Walker 2025-02-13 12:43:34 -06:00 committed by Daniel James Smith
parent 1a0b99599c
commit b6da1454cb
No known key found for this signature in database
GPG Key ID: DA2E2EC600E1289B

View File

@ -96,12 +96,6 @@ public class ImportCiphersController : Controller
return true; return true;
} }
//Users allowed to import if they CanCreate Collections
if (!(await _authorizationService.AuthorizeAsync(User, collections, BulkCollectionOperations.Create)).Succeeded)
{
return false;
}
//Calling Repository instead of Service as we want to get all the collections, regardless of permission //Calling Repository instead of Service as we want to get all the collections, regardless of permission
//Permissions check will be done later on AuthorizationService //Permissions check will be done later on AuthorizationService
var orgCollectionIds = var orgCollectionIds =
@ -118,6 +112,12 @@ public class ImportCiphersController : Controller
return false; return false;
}; };
//Users allowed to import if they CanCreate Collections
if (!(await _authorizationService.AuthorizeAsync(User, collections, BulkCollectionOperations.Create)).Succeeded)
{
return false;
}
return true; return true;
} }
} }