Git Product home page Git Product logo

Comments (6)

gr2m avatar gr2m commented on May 25, 2024 1

For the record, here is the script I used

const { Octokit } = require("octokit");

const USER_LOGIN = "cufret02"

const octokit = new Octokit({
  auth: process.env.GITHUB_TOKEN,
});

main();

async function main() {
  // get all discussions
  const result = await octokit.graphql(
    `
    query paginate($cursor: String) {
      repository(owner: "nock", name: "nock") {
        discussions(first: 100, after: $cursor) {
          nodes {
            id
            title
            url
            author {
              login
            }
          }
          pageInfo {
            hasNextPage
            endCursor
          }
        }
      }
    }`
  );

  const discussions = result.repository.discussions.nodes;
  for (const discussion of discussions) {
    if (discussion.author.login !== USER_LOGIN) continue;

    // delete discussion
    await octokit.graphql(
      `
      mutation deleteDiscussion($id: ID!) {
        deleteDiscussion(input: { id: $id }) {
          clientMutationId
        }
      }`,
      {
        id: discussion.id,
      }
    );
    console.log("discussion %s deleted", discussion.title);
  }
}

from nock.

mikicho avatar mikicho commented on May 25, 2024

Thanks!

Maybe we can just ban them? In the same way they can open a lot of issues.

from nock.

Uzlopak avatar Uzlopak commented on May 25, 2024

@mikicho

I dont see the option to do it. Maybe @gr2m or so has more permissions than I, and can ban this user.

from nock.

mikicho avatar mikicho commented on May 25, 2024

Me too, but it is possible,
https://docs.github.com/en/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization

from nock.

gr2m avatar gr2m commented on May 25, 2024

Thank you @Uzlopak for taking care of it. You should now have both access to the org moderation tools such as https://github.com/organizations/nock/settings/blocked_users

What should be able to do is to report the user for spamming, if enough people do so in a short amount of time, their account gets blocked.

from nock.

gr2m avatar gr2m commented on May 25, 2024

best moderation tool in case of attacks like this is to limit interaction to existing users:
https://github.com/organizations/nock/settings/interaction_limits

I'll delete all the non-sense discussions

from nock.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.