9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
|
var handlebars = require('handlebars');
|
||
|
|
||
|
handlebars.registerHelper('private', function(item, content) {
|
||
|
if (item.access === 'public') return content.fn(this);
|
||
|
else return content.inverse(this);
|
||
|
});
|
||
|
|
||
|
module.exports = handlebars;
|