diff --git a/packages/core/strapi/lib/services/auth/index.js b/packages/core/strapi/lib/services/auth/index.js index 6d91e862f9..cbeeb44b5e 100644 --- a/packages/core/strapi/lib/services/auth/index.js +++ b/packages/core/strapi/lib/services/auth/index.js @@ -100,6 +100,12 @@ const createAuthentication = () => { } if (typeof auth.strategy.verify === 'function') { + strapi.telemetry.send('didCompleteRequest', { + eventProperties: { + authenticationMethod: auth.strategy.name, + isAuthenticated: true, + }, + }); return auth.strategy.verify(auth, config); } },