Der-Eddy
(Eduard)
1
I wanted to get a log of name changes via the Data Explorer Plugin but can’t find anything useful in the db sidebar about this
Could someone head me to right direction? Or is this not being logged? (Besides the one changed by an administrator in the team log)
3 Likes
sam
(Sam Saffron)
2
This was suggested before on bbs, ATM we do not have a log, agree we should add one
6 Likes
Sure @techapj can you add this to your list when you return?
2 Likes
techAPJ
(Arpit Jalan)
4
Done via:
https://github.com/discourse/discourse/commit/b32d3d66e5d846d4728ed12580f58d00f490e1c0
@Der-Eddy after you update to latest, here is the Data Explorer query you are looking for:
SELECT id,
acting_user_id,
target_user_id,
created_at,
previous_value,
new_value
FROM user_histories
WHERE action = 48
ORDER BY id DESC
8 Likes
Is this the source of the incorrect name change log bug @techapj?
2 Likes
techAPJ
(Arpit Jalan)
8
The “log user name changes” feature was regressed in this commit.
2 Likes