Hi,
We have a particular user and who access the confluence page for particular project. Is there any way we can find out by user that he can view different space/Page in confluence.
Regards,
Suma
Recently viewed pages are stored in the AORECENTLY_VIEWED table in Confluence's database. The following query can be ran to see the data ordered by descending last view date and mapped to the user who viewed the page.
SELECT *
FROM "AO_92296B_AORECENTLY_VIEWED"
JOIN user_mapping u ON u.user_key = user_key
ORDER BY "LAST_VIEW_DATE" DESC;
i found this information, please check it may helpful
Hi Anvesh,
Thank you for the response.. I do not have option to check in database. Is there anyway to find out in confluence page then please let me know.
Regards,
Suma
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
https://confluence.atlassian.com/doc/inspect-permissions-992678939.html
unfortunately it's a data center feature only
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.