Hacktoberfest is an annual celebration by Digital Ocean, GitHub, Intel, and DEV Community to promote participation in open source projects, such as NodeBB. All you need to do is submit 4 pull requests within in the month of October!
AdminGroup title not displayed on members
-
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.
- Tom