Closed PhuocMinhcs closed 10 months ago
@PhuocMinhcs Thanks for the report. Please wait as we investigate.
@PhuocMinhcs Sorry for the delay, we fixed this issue in version 0.4.4. Please contact us if you have any further questions.
@yasudacloud Nice, thank you for your notice!
I got the issue after login with Azure AD
And I found the root cause related to this function triggerWebHook at strapi-plugin-sso\server\services\oauth.js line 57
const {ENTRY_CREATE} = strapi.webhookStore.allowedEvents;
the strapi.webhookStore.allowedEvents return undefined
Suggestion: using the event name 'entry.create' instead like this at line 60
strapi.eventHub.emit('entry.create' /*ENTRY_CREATE*/, { model: modelDef.modelName, entry: sanitizedEntity, });
My Strapi version: "@strapi/strapi": "4.10.5"