From ea35b242da316e75928a0a6d336378ea50f4d6f8 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Mon, 22 Jun 2020 19:08:35 +0300 Subject: fix: protect password field in ALL calls --- services/users/users.hooks.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/services/users/users.hooks.ts b/services/users/users.hooks.ts index fc17ed7..580d1d2 100644 --- a/services/users/users.hooks.ts +++ b/services/users/users.hooks.ts @@ -1,7 +1,14 @@ import { hooks } from '@feathersjs/authentication-local'; +import { HookContext } from '@feathersjs/feathers'; const hashPassword = hooks.hashPassword('password'); -const protectPassword = hooks.protect('password'); + +const protectPassword = async (context: HookContext): Promise => { + const { dispatch } = hooks.protect('password')(context); + context.result = dispatch; + context.dispatch = dispatch; + return context; +} export default { after: { -- cgit v1.2.3