0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/core/frontend/services/routing/controllers/index.js
Daniel Lockyer 3b6cdc2bc5
Renamed preview files to previews
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
2022-04-28 15:37:14 +01:00

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');
}
};