mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
c8119eee1f
refs #6982
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
var utils = require('../../utils');
|
|
|
|
function getRssUrl(data, absolute) {
|
|
return utils.url.urlFor('rss', {secure: data.secure}, absolute);
|
|
}
|
|
|
|
module.exports = getRssUrl;
|