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-17 04:31:31 +02:00
return getAllFreePublicClaims(claimName);
}
}