Getting Reviewer-role in Transifex

NodeBB Development

Suggested Topics


  • 1 Votes
    5 Posts
    518 Views

    Help me pls )

  • 0 Votes
    4 Posts
    295 Views

    Whoever it is, it's not us... as @pitaj suggests it could be bots issuing HEAD requests to determine site availability before crawling? Who knows... I am looking at some of them coming in our logging system now, but they have no user agent either, so 🤷

  • 7 Votes
    1 Posts
    1k Views

    Hey all: so this is a slightly smarmy, self-serving request but hey, I am the marketing guy.

    We are working with the Capterra directory to get some NodeBB reviews posted on their site. They have a program where they will give you a $20 gift card (I think you get a choice of Amazon, Starbucks or pre-paid Visa) if you are one of the first 25 people to click an emailed link and post a review. It doesn't matter if you say nice things or if you bash us, although of course we hope you'll be nice!

    If you're interested and are running NodeBB yourself or using our hosting service, please DM me or email [email protected] with your name and email address.

    There is a time limit, I need your response before Monday August 20 at 3 pm Eastern (Toronto/New York) time. A few days after that you'll get a separate email with the details for posting the review.

    Thanks!

  • 0 Votes
    3 Posts
    2k Views

    Those userrs are stored in groups with special names, here are the names assuming the category id is 1.

    cid:1:privileges:find
    cid:1:privileges:read
    cid:1:privileges:topics:create
    cid:1:privileges:topics:reply

    You can get the user ids from these groups by.

    Groups.getMembers('cid:1:privileges:find', 0, -1, callback); This will give you all the user ids that have the find permission for category 1.

    If you want to get their basic info like username picture slug so you can show user icons you can just use Groups.getMemberUsers('cid:1:privileges:find', 0, -1, calllback);

  • 0 Votes
    5 Posts
    2k Views

    @baris great, thanks!

    [EDIT] Will this hook persist?