diff options
Diffstat (limited to 'services/users/users.hooks.ts')
-rw-r--r-- | services/users/users.hooks.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/users/users.hooks.ts b/services/users/users.hooks.ts index 64b322a..48843be 100644 --- a/services/users/users.hooks.ts +++ b/services/users/users.hooks.ts @@ -15,7 +15,7 @@ const ignoreCaseRegex = async (context: HookContext): Promise<HookContext> => { export default { after: { all: hooks.protect('password'), - get: discard('password'), // Protect password from local get's + get: discard('password') // Protect password from local get's }, before: { find: ignoreCaseRegex, |