Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
i install nodebb,but i can not find any info about the admin account
i can not login with the admin,have anybody tell me ?
When you ran node app --setup, it asked you to set up admin credentials. Use those credentials to log in.
node app --setup
O
@pitaj Right, Admins and Moderators can see deleted topics. I did not think about that.
But do I also get a notification, when an Admin is replying to my deleted topic?
W
@pichalite thanks.. Looks like it's that.
@gvimlan You can listen to the filter:user.updateProfile hook https://github.com/NodeBB/NodeBB/blob/master/src/user/profile.js#L21 and restrict email changing.
UPD: You see that conditional statement, right? https://github.com/NodeBB/NodeBB/blob/master/src/user/profile.js#L38-L40 You need to just always make it = null; inside your listener, that's it.
@julian Close enough. Your point is made.
@frissdiegurke said:
seems similar to the bug https://github.com/NodeBB/NodeBB/issues/3489 so you may just need to update your dependencies (rm -rf node_modules && npm cache clean && npm i).
That worked, thanks!