mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
213f0a4785
- Moved ghost-locals from shared to parent as it is not shared - This file is only used in one place, this updates the code structure to reflect this - This is one of many similar changes needed to make it easier to refactor to the existing setup - This allows shared middleware to be unhooked from the parent app
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
module.exports = {
|
|
emitEvents: require('./emit-events'),
|
|
ghostLocals: require('./ghost-locals'),
|
|
logRequest: require('./log-request'),
|
|
requestId: require('./request-id')
|
|
};
|