# auth0-progresive-profiling-demo **Repository Path**: mirrors_auth0/auth0-progresive-profiling-demo ## Basic Information - **Project Name**: auth0-progresive-profiling-demo - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Demo implementing progressive profiling In order to skip the profiling step after the signup, this rule needs to be created in your account. It will add a flag to the user profile only after signup. ``` function (user, context, callback) { if (context.stats.loginsCount === 1) { user.is_singup = true; } callback(null, user, context); } ```