I would like to remove the browse permission for the group jira-users for all projects. As there are many projects (as well as many schemes) I would like to use a script.
Within the JIRA-Administration, I can remove the group by removing the group directly from the browse permission (in the scheme) and by removing the group from the project roles which have the browse permission (in the scheme).
I have the permission and the group, for which I want delete the permission. I have all the projects and permission schemes. And I have the permission manager, with which I should be able to delete the permission.
def jiraUserGroup = ComponentAccessor.getGroupManager().getGroup("jira-users") def browsePermissionId = Permission.BROWSE.getId(); def permissionManager = ComponentAccessor.getPermissionManager() def permissionSchemes = ComponentAccessor.getPermissionSchemeManager().getSchemeObjects() def projects = ComponentAccessor.getProjectManager().getProjectObjects()
But I didn't find any helpful methods, which do what I want. Could anybody give me a hint?
Have you try permissionManager.removeGroupPermissions("jira-users") ?
The call removeGroupPermission("jira-users") would remove all priviledges from jira-users.
I only want to remove the browse-permissions for all projects. The jira-users should still be able to log-in. I just want to make sure, that projects are only seen by the right group. Therefore all users are grouped into serveral groups and these groups will get the particular browse priviledges.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Doing it from the JIRA API is quite complicated. How about doing it from the database?
DELETE FROM schemepermissions WHERE PERMISSION = 10 AND perm_type = 'group' AND perm-parameter = 'jira-users'; DELETE FROM projectroleactor WHERE ROLETYPE = 'atlassian-group-role-actor' AND ROLETYPEPARAMETER = 'jira-users';
You may need to restart JIRA for it to take effect. Remember to backup JIRA for rollback purposes.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's not the most elegant way to use SQL instead of an API, but I guess it is the simplest.
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.