9 lines
203 B
JavaScript
Raw Normal View History

2022-12-06 12:14:33 +01:00
'use strict';
2022-12-07 14:43:28 +01:00
const executeCERegister = require('../../server/register');
2022-12-06 12:14:33 +01:00
module.exports = async ({ strapi }) => {
2022-12-08 16:04:31 +01:00
// TODO: register auditLogs provider here
2022-12-07 14:43:28 +01:00
await executeCERegister({ strapi });
2022-12-06 12:14:33 +01:00
};