Giter Site home page Giter Site logo

Comments (3)

ajimix avatar ajimix commented on May 25, 2024 1

For other users coming here, this is how you can fix it by deleting from the database:

  1. Connect to mongo using the instructions here and running mongo --port 27019
  2. Inside mongo, run use wekan
  3. Find the board by running db.boards.find()
  4. When you have the board id and the user id to remove, run the following:
db.boards.update(
  { _id: 'BOARD_ID' },
  { $pull: { 'members': { userId: 'USER_ID' } } }
);

That will remove the member from the board in the database enabling again mentions

from wekan.

bbyszio avatar bbyszio commented on May 25, 2024

I can confirm this issue. If you forget to remove the user which want to delete, you broke your database. After this the mention of users in this board dont work anymore. You have to remove the user then directy in database from the boards. It would be better if we can do this in the admin area or if user would be removed from all boards automaticly when they deleted.

from wekan.

ajimix avatar ajimix commented on May 25, 2024

Same problem here. The biggest issue is that it breaks mentions from the board 😢

from wekan.

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.