summaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/hbs_helpers/getOperators.js
blob: 4e3606fe82c6147b28d52c6c7fa830f8c9ed6beb (plain)
1
2
3
4
5
6
7
module.exports = function(classname) {
	var check = OCA.WorkflowEngine.getCheckByClass(classname);
	if (!_.isUndefined(check)) {
		return check['operators'];
	}
	return [];
}