mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-08 12:09:43 +03:00
9de13ae3ad
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
20 lines
280 B
JavaScript
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');
|
|
}
|
|
};
|