2
0
Fork 0
tcrud/lib/plugin/format/format-rss.js

14 lines
300 B
JavaScript
Raw Permalink Normal View History

2017-06-10 14:53:29 +00:00
module.exports = (function () {
return function FormatRssPlugin() {
this.configPlugin = function (ctx) {
ctx.key = 'formatRSS';
ctx.description = 'Export tentity list/read api in rss format.';
ctx.localDir = __dirname;
ctx.localConfigTemplate = 'format-rss.json';
};
};
})();