spee.ch/controllers/showController.js
2017-06-19 19:34:34 -07:00

8 lines
193 B
JavaScript

const getAllFreePublicClaims = require('../helpers/functions/getAllFreePublicClaims.js');
module.exports = {
getAllClaims (claimName) {
return getAllFreePublicClaims(claimName);
},
};