spee.ch/controllers/showController.js

7 lines
192 B
JavaScript
Raw Normal View History

var getAllFreePublicClaims = require("../helpers/functions/getAllFreePublicClaims.js");
module.exports = {
getAllClaims: function(claimName){
2017-06-16 19:31:31 -07:00
return getAllFreePublicClaims(claimName);
}
}