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