I\'m converting an app of mine from Express to sails.js - is there a way I can do something like this in Sails?
From my app.js file in Express:
app.js
I just made a service which delivers a value:
maxLimbs: function(){ var maxLimbs = 15; return maxLimbs; }