fix(audit): increase default audit log limit from 1000 to 10000
- Dashboard was frozen at 1000 decisions - Actual total is 3281 decisions - Increased limit to 10000 to show all audit data - Chart scaling already handles large datasets properly
This commit is contained in:
parent
316db0a7bd
commit
c42a81f57a
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ const logger = require('../utils/logger.util');
|
|||
*/
|
||||
async function getAuditLogs(req, res) {
|
||||
try {
|
||||
const { days = 7, limit = 1000 } = req.query;
|
||||
const { days = 7, limit = 10000 } = req.query;
|
||||
|
||||
// Calculate date range
|
||||
const today = new Date();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue