Ghost/core/server/lib/social/index.js
kirrg001 64626dedd1 Moved social utility to lib/social
refs #9178

- not 100% sure about this, but i think it makes right now the most sense
- we have already a url service and creating another lib/url is confusing at the moment
- i'll copy the last utility `makeAbsoluteUrls` to the url service for now
- see next commit for explanation (!)
2017-12-14 22:34:05 +01:00

8 lines
94 B
JavaScript

'use strict';
module.exports = {
get urls() {
return require('./urls');
}
};