It only returns a subset of user data https://github.com/NodeBB/NodeBB/blob/master/src/posts/user.js#L24-L28
If you want to add more you can do so in a plugin, using the hook filter:posts.modifyUserInfo
I have 2 users in my admin group, me (I installed nodebb) and an additional user who I added later. The group title is being displayed beside my nick, but not beside the other user:
Membership:
Any idea what could be wrong here? The group is not hidden.
thanks,
Tom
Well, if I click on a user from the administration I end up in the frontend user profile, there's no groupTitle anywhere.
However, I managed to fix it via mongodb directly:
db.objects.update({ "username" : "Karin" }, { $set: { "groupTitle" : "administrators" }});
After nodebb restart the groupTitle shows.