Maybe i didn't found a way, i would like create or see a list with all inactive Users. How can I fix this?
Or look at the groups that are listed in the Global Permissions of the permission JIRA Users. Everyone that is in that group is an active member in JIRA.
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.
Hi Kadir,
You can only do this easily through a query in your jira database.
Tarun has already proved the query :
SELECTu.user_name,u.first_name,u.last_name,u.email_address,d.directory_name fromcwd_user u joincwd_directory d onu.directory_id = d.id whereu.active = 0;
Best regards,
Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
SELECTu.user_name,u.first_name,u.last_name,u.email_address,d.directory_name fromcwd_user u joincwd_directory d onu.directory_id = d.id whereu.active = 0;
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.