You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
planka_custom/server/api/helpers/get-board-to-project-path.js

36 lines
513 B
JavaScript

module.exports = {
inputs: {
criteria: {
type: 'json',
required: true,
},
},
exits: {
pathNotFound: {},
},
async fn(inputs, exits) {
const board = await Board.findOne(inputs.criteria);
if (!board) {
throw 'pathNotFound';
}
const project = await Project.findOne(board.projectId);
if (!project) {
throw {
pathNotFound: {
board,
},
};
}
return exits.success({
board,
project,
});
},
};