aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hooks/populate-user.js
blob: dfa58cf0e15584ef136f9d6ae23b10e242223dbb (plain) (blame)
1
2
3
4
5
6
7
8
9
// Use this hook to manipulate incoming or outgoing data.
// For more information on hooks see: http://docs.feathersjs.com/api/hooks.html

// eslint-disable-next-line no-unused-vars
module.exports = function (options = {}) {
  return async context => {
    return context;
  };
};