Hello,
a rename of a group is not working.
Groups are not working with an ID but only key is the groupname ...
And a group-name can change!
This is in daily use of the tool a problem it a company is for example changing department-names or something like that.
It seems to be a known problem and cause many problems for users.
For example they loose access-rights after a renaming of a group.
Why is this that way? and why is this still not solved?
best regards
Torsten
It was a long-time limitation, but I thought Atlassian fix this last year... Have you seen this article?
as we sync the groups via Azure, Problem is, that this is still not solved:
Groups that are synced via an IdP (SCIM) cannot be renamed, yet.
seems that the key for groups is the name of a group and that can change, of course.
Nearly all other tools can handle group-renames, except Atlassian
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Groups that have already been synced from your IdP cannot be renamed yet, we have a Feature Request for that:
I recommend you to vote and comment on there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
feature request is older than 4 years ...
how long last development-cycles of Atlassian in such a context?
This problem cause many problems for users and complaints landing by IT admins
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The priority of our development team is based on many factors so I recommend you to comment and vote on the Feature Request so our developers can see your comments.
Best Regards,
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
but without transfering the membership this not really helps
what is the plan from Atlassian to solve this known problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@T Becherer Please accept my answer if you find it useful
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @T Becherer
Welcome to the community!
You can do it via SQL as it cannot be accomplished within Confluence.
First, backup your SQL database. Then run this simple modification to the cwd_group.
Just modify the group_name field to whatever you would like the group named
The SQL statement to run is as follows:
Update cwd_group set group_name='<new_group_name>', lower_group_name='<new_group_name>' where lower_group_name='<old_group_name>';
Be aware that this only renames the group itself.
Membership does not get transferd this way. The group will be empty.
Hope this helps!
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.