const Errors = { BOARD_NOT_FOUND: { boardNotFound: 'Board not found', }, }; module.exports = { inputs: { id: { type: 'string', regex: /^[0-9]+$/, required: true, }, }, exits: { boardNotFound: { responseType: 'notFound', }, }, async fn(inputs) { const { currentUser } = this.req; const path = await sails.helpers.boards .getProjectPath(inputs.id) .intercept('pathNotFound', () => Errors.BOARD_NOT_FOUND); let { board } = path; const { project } = path; if (!board) { throw Errors.BOARD_NOT_FOUND; } const isProjectManager = await sails.helpers.users.isProjectManager(currentUser.id, project.id); if (!isProjectManager) { throw Errors.BOARD_NOT_FOUND; // Forbidden } board = await sails.helpers.boards.deleteOne.with({ project, record: board, actorUser: currentUser, request: this.req, }); if (!board) { throw Errors.BOARD_NOT_FOUND; } return { item: board, }; }, };