mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
64626dedd1
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 (!)
8 lines
94 B
JavaScript
8 lines
94 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get urls() {
|
|
return require('./urls');
|
|
}
|
|
};
|