mirror of
https://github.com/strapi/strapi.git
synced 2025-09-17 04:17:21 +00:00
13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
'use strict';
|
|
|
|
const auditLogContentType = require('./content-types/audit-log');
|
|
|
|
const provider = {
|
|
register({ strapi }) {
|
|
strapi.container.get('content-types').add('admin::', { 'audit-log': auditLogContentType });
|
|
return this;
|
|
},
|
|
};
|
|
|
|
module.exports = provider;
|