mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
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 (!)
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get urls() {
|
|
return require('./urls');
|
|
}
|
|
};
|