Due EU Laws (EU General Data Protection Regulation / EU-DSVO) we need to change the information related to inactive / disabled users:
Is there any configuration available to do this automaticaly?
The user name can be changed by the ldap: Should be easy. But how can i disable or overwrite the avatar for inactive users?
Regards
Manuel
Did you find any automated way to delete inactive users' avatar?
taek a backup before attempting this:
There are 4 tables involved here:
A good place to start is the following sql:
SELECT u.lower_user_name,a.* FROM app_user as u left join propertyentry as pe on pe.entity_id=u.id left join propertynumber as pn on pe.id=pn.id left join avatar as a on a.id=pn.propertyvalue where entity_name = 'ApplicationUser' and property_key='user.avatar.id';
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.