diff options
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/isAuthenticated.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hooks/isAuthenticated.ts b/hooks/isAuthenticated.ts index 50290c8..077fbec 100644 --- a/hooks/isAuthenticated.ts +++ b/hooks/isAuthenticated.ts @@ -1,7 +1,6 @@ import { HookContext } from '@feathersjs/feathers'; export default async (context: HookContext): Promise<boolean> => { - console.log(context.params.authenticated); return context.params.authenticated || false; }; |