I need to find out last modified time of a project area in jira, not the last modified time of a issue in that project area. Modification can be project name modified etc etc
The administrator audit log will capture some project changes. Log in as an admin, go to the admin section and use the search to find "audit"
My code is like this
AuditingManager auditMgr = ComponentAccessor.getComponent(AuditingManager.class);
AuditingFilter filter = AuditingFilter.builder().fromTimestamp(from.getMillis()).build();
Records records = auditMgr.getRecords(null, null, limit, null, filter);
This hangs if I create a new project area
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks to me like getRecords does not have those parameters, so it's failing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- Can you please give me an code example to filter out project modification audit event based on time.
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.