mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
05cf4f495d
- Moved update-user-last-seen 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
5 lines
156 B
JavaScript
5 lines
156 B
JavaScript
module.exports = {
|
|
cors: require('./cors'),
|
|
updateUserLastSeen: require('./update-user-last-seen'),
|
|
versionMatch: require('./version-match')
|
|
};
|