Ghost/core/server/apps/default-cards/index.js
Katharina Irrgang 9de13ae3ad Moved mobiledoc/markdown converters to apps/default-cards (#9338)
refs #9178

- they definitely don't belong to server/utils
- i think the best place is putting them into the card apps
- the the post model needs to ask the app for it's converters
- move tests as well
2017-12-14 11:09:54 +00:00

20 lines
280 B
JavaScript

'use strict';
module.exports = {
activate() {
// needed by ghost
},
get cards() {
return require('./cards');
},
get atoms() {
return require('./atoms');
},
get converters() {
return require('./converters');
}
};