mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
59 lines
1.2 KiB
JavaScript
Executable file
59 lines
1.2 KiB
JavaScript
Executable file
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
const { idInput } = require('../../../utils/inputs');
|
|
|
|
const Errors = {
|
|
BOARD_NOT_FOUND: {
|
|
boardNotFound: 'Board not found',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
id: {
|
|
...idInput,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
boardNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { currentUser } = this.req;
|
|
|
|
const pathToProject = await sails.helpers.boards
|
|
.getPathToProjectById(inputs.id)
|
|
.intercept('pathNotFound', () => Errors.BOARD_NOT_FOUND);
|
|
|
|
let { board } = pathToProject;
|
|
const { project } = pathToProject;
|
|
|
|
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,
|
|
};
|
|
},
|
|
};
|