You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Property name of the password field on your `'/users'` service
116
116
* @default 'password' */
117
117
passwordField: string
118
+
/** Should we skip hashing password for `passwordField` ? If `true`, password won't be hashed by feathers-authentication-management when patching the user. This must be set to `true` if you are hashing your password field using resolvers. */
119
+
skipPasswordHash: boolean
118
120
/** Pass params from f-a-m service to `/users` service */
119
121
passParams: (params)=>Params|Promise<Params>
120
122
}
@@ -139,6 +141,7 @@ export type VerifySignupSetPasswordLongServiceOptions = Pick<AuthenticationManag
0 commit comments