-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Is there any way to do bulk or batch CRUD operations? For example, I have a script that creates a new user and then I need to add each project permission 1 by 1 to that user. Since there are about 150 permissions I would like to send 1 api request to create them all not 150 individual requests. In my case, there are only 3 parent projects. However when I add the permission on the parent project all the children projects do not get the same permission. I've also tried setting a default permission for the workspace but even after doing this and giving the user a workspace permission they still do not get access to the projects and child projects. Is there a better way to go about this? I noticed the rally frontend doesn't use the api and will let you bulk update permissions in one request.