feathersjs/feathers-generator

View on GitHub
examples/service/src/filters/default.js

Summary

Maintainability
B
4 hrs
Test Coverage
export default function () {
  function log () {
    if (process.env.NODE_ENV !== 'testing') {
      console.log(...arguments);
    }
  }

  log(`You are using the default filter for the \`example\` service (in ${__dirname}).`);
  log(`This means all clients will get every real-time event.`);
  log(`For more information how to filter events see http://docs.feathersjs.com/real-time/filtering.html`);
  log(``);

  return function (data, connection, hook) {
    log(`default example filter executed`);
    return data;
  };
};