Hey Manuel!
This feature is on project's roadmap:
Mark post in question thread as answer, bringing basic Q&A functionality.
I've always considered it low priority and focused on other things, but thinking about it now getting MVP implementation wouldn't be hard:
New fields on Thread
model:
answer
ForeignKey
to Post
answer_set_by
ForeignKey
to settings.AUTH_USER_MODEL
answer_set_on
DateTimeField
Add permissions for setting this field to threads permission provider.
Next, create patch
operation for setting and unsetting this field, based on permissions. Misago has comfortable framework in for writing those ops.
Lastly, update the thread serializer and then our JS UI.
I'm currently occupied refactoring and cleaning up the code behind our JSON API as groundwork for incoming frontend rewrite, but now and then and I'm taking breaks from that to cut new releases for folk out there. I've already made the mistake of becoming exclusively focused with "Big Next Thing" (TM) in the past. This seems like something simple enough for me to actually try to release this feature in basic version in few weeks.