api/
lists/ # a unit of domain logic
server/
publications.js # all list-related publications
publications.tests.js # tests for the list publications
lists.js # definition of the Lists collection
lists.tests.js # tests for the behavior of that collection
methods.js # methods related to lists
methods.tests.js # tests for those methods
In the above example the methods are accessible on both the server and the client, except the ones within isServer blocks.
Can I place some methods inside the server directory, to avoid the isServer blocks?
Thanks!