Project setting unavailable for custom admin permission group

Hi, I created a custom group that’s supposed to have the same permission as the default admin group.


However, I couldn’t see the project setting option when logging in a custom admin group member.
Screen Shot 2022-10-04 at 2.46.48 PM
The option is available in the default admin account.
Screen Shot 2022-10-04 at 2.47.04 PM
Is there configuration missing for me?

Hey there.

Global permissions do not grant project-level permissions.

If this group should be added on all new projects, you’ll want to update the default Permission Template for new projects. An updated permission template can also be bulk applied to existing projects, but this will overwrite any other individual permissions that have been set.

If it’s a small number of projects, an existing admin can go through and add these permissions in the UI. If you want to do so programmatically, you would need to iterate through the projects (probably calling GET api/projects/search ) and call POST api/permissions/add_group for each project to add the group.