8 lines
178 B
JavaScript
Raw Normal View History

2022-12-06 12:14:33 +01:00
'use strict';
const createAuditLogsService = require('./services/audit-logs');
module.exports = async ({ strapi }) => {
strapi.auditLogs = createAuditLogsService(strapi);
};