Right now it shows which user post has been selected as Solved “Solved By”.
How to know who actually has opted it as Solution and clicked on Solved?
Moin
September 23, 2024, 5:57pm
2
You can use the data explorer plugin to find out
To look up who has marked a particular topic as Solved:
-- [params]
-- topic_id :topic_id
SELECT
target_topic_id,
acting_user_id,
created_at::date
FROM user_actions
WHERE target_topic_id = :topic_id
AND action_type = 15
ORDER BY created_at DESC
I was interested to see these stats for my instance as well, so had a go at making some queries for data explorer:
To list each individual “solved” event:
SELECT acting_user_id, target_topic_id, target_post_id, created_at FROM user_actions
WHERE action_type=15
ORDER BY created_at DESC
To produce a list with stats per-user: (with variable for time interval, defaults to 1 year):
-- [params]
-- string :interval = 1 year
SELECT ua.acting_user_id,
count(case t.user_id when ua.acting_use…
There’s also this open Feature request you may find interesting and want to add your voice to:
Over and over again I have wished I could tell who marked a post the solution: whether it was the OP or someone who (for whatever reason) wanted to close the topic
6 Likes
This may help; I use it myself. Theme component from @Don .
Moin
September 24, 2024, 7:40pm
5
How does that component help to find out who clicked the solution button below the post to mark the topic as solved?
1 Like
I have set it with red for unsolved and green as solved, including the solved avatar who solved the topic.
Plus, you can find by clicking the profile’s. solved icon, which brings up all other topics.
Moin
September 24, 2024, 8:55pm
7
This topic is not about finding out who is the author of the post that is marked as the solution. But about who decided that it is the solution.
I don’t think that information is shown in the profile. Or can you tell me who decided that post 2 is the solution?
1 Like
Sorry, my bad. I misread the message.
1 Like
system
(system)
Closed
October 24, 2024, 9:02pm
9
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
nat
(Natalie T)
March 26, 2025, 4:16am
10
Lifting this from the feature topic:
Just an update here that this is now possible:
You can see it in action on Support - Discourse Meta
The site setting show who marked solved
is disabled by default to keep to the status quo, but you may turn it on if your community feels it is useful.
3 Likes