How can I filter my issues by epic including items which have been completed? (I can see that I can do this on the backlog).
You can look at my.atlassian.com and find out how many users your evaluation for Confluence is for (just to double check). Otherwise, you may have default application access setup to allow Confluence.
Hi David,
In order to identify the users, you may run the query below against your Confluence database.
SELECT o.list_index, d.active, d.id as DirectoryID, d.directory_name, d.directory_type, u.id as UserID, u.user_name FROM cwd_user u JOIN cwd_directory d ON u.directory_id = d.id JOIN cwd_app_dir_mapping o ON d.id=o.directory_id ORDER BY 2 DESC, 1 ASC;
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.
Hi Hossein,
Does this apply to the onDemand version of Confluence? How would I run the above SQL statement?
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.