mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
refs https://github.com/TryGhost/Toolbox/issues/308 - we have a pattern of using plurals around Ghost but this was singular - this shouldn't change any API functionality, it's just code refactoring
33 lines
543 B
JavaScript
33 lines
543 B
JavaScript
module.exports = {
|
|
get entry() {
|
|
return require('./entry');
|
|
},
|
|
|
|
get collection() {
|
|
return require('./collection');
|
|
},
|
|
|
|
get rss() {
|
|
return require('./rss');
|
|
},
|
|
|
|
get previews() {
|
|
return require('./previews');
|
|
},
|
|
|
|
get email() {
|
|
return require('./email-post');
|
|
},
|
|
|
|
get channel() {
|
|
return require('./channel');
|
|
},
|
|
|
|
get static() {
|
|
return require('./static');
|
|
},
|
|
|
|
get unsubscribe() {
|
|
return require('./unsubscribe');
|
|
}
|
|
};
|