mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
f4f61b8a3a
- Moved normalize image mw from shared to api as it is not shared (except within the API) - This file is only used in one part of the app, 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
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
module.exports = {
|
|
cors: require('./cors'),
|
|
normalizeImage: require('./normalize-image'),
|
|
updateUserLastSeen: require('./update-user-last-seen'),
|
|
upload: require('./upload'),
|
|
versionMatch: require('./version-match')
|
|
};
|