Moderators per forum
-
That its possible?
I have some forums and moderators want to manage it ... But i dont want they have acess to Admin Panel. -
@Pablo Macaluso
till then, you can add a moderator this way
{cid} --> the category id
{uid} --> the user idredis terminal client
sadd cid:{cid}:moderators {uid}
mongo console client
i thinkdb.objects.update( { _key: 'cid:{cid}:moderators' }, { $addToSet: { members: '{uid}' }}, { upsert: true, w: 1 });
-
@Pablo Macaluso
till then, you can add a moderator this way
{cid} --> the category id
{uid} --> the user idredis terminal client
sadd cid:{cid}:moderators {uid}
mongo console client
i thinkdb.objects.update( { _key: 'cid:{cid}:moderators' }, { $addToSet: { members: '{uid}' }}, { upsert: true, w: 1 });
i will try, its hard for me, im a little newbie. xP
Copyright © 2024 NodeBB | Contributors