mirror of
https://github.com/strapi/strapi.git
synced 2025-07-09 10:02:51 +00:00
27 lines
265 B
JavaScript
27 lines
265 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Models hook
|
|
*/
|
|
|
|
module.exports = function () {
|
|
const hook = {
|
|
|
|
/**
|
|
* Default options
|
|
*/
|
|
|
|
defaults: {},
|
|
|
|
/**
|
|
* Initialize the hook
|
|
*/
|
|
|
|
initialize: function (cb) {
|
|
cb();
|
|
}
|
|
};
|
|
|
|
return hook;
|
|
};
|