This question is in reference to Atlassian Documentation: Status Report - Example of Page Properties Report MacroCan you run a report to find see all of the pages that have not been updated for one year? The reason I ask is that this would simplify ISO 27001 auditing.
please refer this answer
Thank you. That actually answers the question perfectly. Now I have to find out if we have the plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any restriction to how you gather the data? You could do it with SQL, something like
select TITLE,CONTENTID,PAGEID from CONTENT where CONTENTTYPE = 'PAGE' AND DATEDIFF(year,LASTMODDATE,GetDate()) >= 1 AND PREVVER IS NULL;
One thing to keep in mind is if you don't check for PREVVER IS NULL, then it will show a record for page histories that are older than a year.
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.