fix(cli): password reset should trigger internal and external hooks (#4066)

Ticket: N8N-4586
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2022-09-09 14:01:48 +02:00
committed by GitHub
parent eebc51ec7c
commit 12507d39d6
2 changed files with 9 additions and 1 deletions

View File

@@ -101,7 +101,8 @@ export async function initTestServer({
if (
endpointGroups.includes('credentials') ||
endpointGroups.includes('me') ||
endpointGroups.includes('users')
endpointGroups.includes('users') ||
endpointGroups.includes('passwordReset')
) {
testServer.externalHooks = ExternalHooks();
}