import { HookContext } from '@feathersjs/feathers'; export default async (context: HookContext): Promise => { console.log(context.params.authenticated); return context.params.authenticated || false; };