Hi community,
we want to restrict the 'users and roles' page to Jira administrators only. Projects admins should be able to view the page but not update resp. add new individual users.
We want to connect our Jira authorization to a self service portal (SSP) which handles subscriptions. Project admins must not have the right to add individuals directly within Jira. Only subscription owners in the SSP are allowed to grant access.
Does anybody have a similar use-case and can give me a hint how to do?
many thanks
Markus
You can't do this natively, you would need to hack the code in Jira to downgrade the access for project admins.
many thanks for your response.
For Confluence we found a solution and was wondering whether a similar solution exists for Jira.
found the correct jquery code to disable only the editpermission form. Add this to Confluence Custom HTML code (at the end of HEAD):
<!-- to disable edit permission button on space permission page -->
<script>
AJS.toInit(function(){
AJS.$('form[name="editspacepermissions"]').remove();
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.