-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
having issue in fetching lists of different board #979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Is this for some feature you are developing now? |
yes, i am currently making feature of move and copy cards between different boards |
Have you looked at existing pull request, that currently does not build properly? |
That pull request may have some stuff that is not needed. |
Moved to #797 |
Does cardClone code from #797 have something that helps you? It's originally linked to this: and probably same code is also at devel branch: |
Can you share your current in-progress code of move and copy cards as pull request or GitHub gist? |
Move and copy cards feature has already been added to Wekan. |
Hi,
i am having issue in following code
var boardId = Session.get('selectedBoard') ? Session.get('selectedBoard') : Session.get('currentBoard') var selectedBoardLists = Boards.findOne({ '_id' : boardId}).lists(); var list = selectedBoardLists.fetch();
where board id would be any other board which user selects or currentBoard ... usually it doesn't return any results on some of boardId which exists in mongoDB ... its only working for currentBoard
but when i open up all the boards at least once and than again run above code in my helper function of "moveCardPopup" template fetch lists correctly from mongoDB
i am testing above code with AdminUser who has access to all the boards and also done testing by changing permission between public and private but it didn't worked
The text was updated successfully, but these errors were encountered: