How can I find out who created / edited / deleted a certain user?
I got a notification email that a new user has been created but I dont have any idea who made it.
How can I find out who created / edited / deleted a certain user?
I got a notification email that a new user has been created but I dont have any idea who made it.
You must be logged in to post a comment.
Hook into the actions
user_register
,profile_update
anddelete_user
, and inspect the current user. Useget_current_user_id()
to get the acting user and use â¦â¦ to get more data about the user creating or deleting the other user.