diff options
Diffstat (limited to 'hooks/tryAuthenticate.ts')
-rw-r--r-- | hooks/tryAuthenticate.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hooks/tryAuthenticate.ts b/hooks/tryAuthenticate.ts new file mode 100644 index 0000000..e179417 --- /dev/null +++ b/hooks/tryAuthenticate.ts @@ -0,0 +1,8 @@ +import { HookContext } from '@feathersjs/feathers'; +import { authenticate } from '@feathersjs/authentication'; + + +export default async (context: HookContext): Promise<HookContext> => { + return authenticate('jwt')(context).catch(() => context); +}; + |