mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
c8119eee1f
refs #6982
8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
var utils = require('../../utils');
|
|
|
|
function getRssUrl(data, absolute) {
|
|
return utils.url.urlFor('rss', {secure: data.secure}, absolute);
|
|
}
|
|
|
|
module.exports = getRssUrl;
|