-
-
Notifications
You must be signed in to change notification settings - Fork 778
Description
Is there an existing issue for this?
- I have searched the existing issues
Description of problem
In portals with multiple user roles, different roles often require different profile fields.
Today, DNN profile properties are defined at portal level and are always shown to all users, regardless of their role.
This leads to several issues:
- Profile forms become cluttered with irrelevant fields
- Some fields are only meaningful for specific roles (e.g. vendors, staff, instructors)
- There is no built-in way to control visibility, editability, or required state of profile properties per role
- Site owners are forced to implement workarounds or build custom modules for role-specific data
Description of solution
Introduce role-based visibility and editability rules for profile properties, without changing the existing profile data schema.
Each profile property could optionally define:
- Which roles can view the field
- Which roles can edit the field
- Which roles require the field (validation)
Key points:
- Profile properties remain portal-wide
- User profile storage remains unchanged
- If no role rules are defined, behavior stays exactly as it is today
- Rules would only affect UI rendering and validation logic
This keeps the feature fully backward compatible while enabling much more flexible profile experiences.
Description of alternatives considered
-
Role-specific profile schemas:
Rejected due to high complexity, database changes, and backward compatibility risks. -
Separate custom modules per role:
Works, but duplicates functionality already handled by DNN profiles and increases maintenance cost. -
Doing nothing / workarounds:
Leads to poor UX and inconsistent implementations across portals.
The proposed approach offers the best balance between flexibility and stability.
Anything else?
This feature would be especially useful for:
- E-commerce portals (customers vs vendors)
- Educational platforms (students vs instructors)
- Corporate portals (employees vs managers)
It also aligns well with DNN’s extensibility goals while keeping the core simple and stable.
Do you plan to contribute code for this enhancement?
- Yes
Would you be interested in sponsoring this enhancement?
- Yes
Code of Conduct
- I agree to follow this project's Code of Conduct