The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to assign ADMINISTER permission to a normal User?

JIRA Plugin Developer
July 9, 2014

Hello everybody,

how can I assign Admin permissions to a normal user when I am a loggedIn User that is also a normal User. Is this possible in a JIRA Plugin?

My background is to change the owner of a filter. To do that I have to be ADMINISTER to assign the owner of a filter to another user.

Please help me.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Diego Zarpelon
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 10, 2014

If you don't have jira-administrator permissions you can do that using your database.

Use the following query to put the user "test" on group jira-administrators using postgresql

update cwd_membership set lower_parent_name='jira-administrators',parent_name='jira-administrators'  where child_name='test'

After that restart your JIRA instance and the user will be member of that group.

Hope this helps and let me know if there's something else I can help you.
Best regards.
Diego Zarpelon
Atlassian Jira Support Engineer