Description
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