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