Refactor server code
Having a separate file for Meteor.methods definitions that mostly will just call functions in other files is kind of pointless.
It is also very stupid to make all the functions we need to call live in the global, top-level namespace.
A better approach would be to put the Meteor.method definitions in the apropriate file in the server folder, and stop defining the functions using this.*
This way the actual functions will be "private" and the methods will be exposed through Meteor.methods. Any functions that are called across files (very few) should at least get their own namespace to prevent polluting the root namespace.