apostrophe
Version:
The Apostrophe Content Management System.
18 lines (16 loc) • 315 B
JavaScript
const migrations = require('./lib/migrations.js');
module.exports = {
extend: '@apostrophecms/doc-type',
options: {
name: '@apostrophecms/polymorphic-type',
showPermissions: false
},
init(self) {
self.addMigrations();
},
methods(self) {
return {
...migrations(self)
};
}
};