import * as authentication from '@feathersjs/authentication' // Don't remove this comment. It's needed to format import lines nicely. import formatMessage from '../../hooks/format-message' const { authenticate } = authentication.hooks export default { before: { all: [authenticate('jwt')], find: [], get: [], create: [formatMessage()], update: [], patch: [], remove: [] }, after: { all: [], find: [], get: [], create: [], update: [], patch: [], remove: [] }, error: { all: [], find: [], get: [], create: [], update: [], patch: [], remove: [] } }