spee.ch/controllers/showController.js

7 lines
234 B
JavaScript
Raw Normal View History

var getAllFreePublicClaims = require("../helpers/functions/getAllFreePublicClaims.js");
module.exports = {
getAllClaims: function(claimName){
return getAllFreePublicClaims(claimName); // to-do: does this need to be returned?
}
}