mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
46 lines
754 B
JavaScript
Executable file
46 lines
754 B
JavaScript
Executable file
const Errors = {
|
|
USER_NOT_FOUND: {
|
|
userNotFound: 'User not found',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
id: {
|
|
type: 'string',
|
|
regex: /^[0-9]+$/,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
userNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
let user = await sails.helpers.users.getOne(inputs.id);
|
|
|
|
if (!user) {
|
|
throw Errors.USER_NOT_FOUND;
|
|
}
|
|
|
|
if (user.email === sails.config.custom.defaultAdminEmail) {
|
|
throw Errors.USER_NOT_FOUND; // Forbidden
|
|
}
|
|
|
|
user = await sails.helpers.users.deleteOne.with({
|
|
record: user,
|
|
request: this.req,
|
|
});
|
|
|
|
if (!user) {
|
|
throw Errors.USER_NOT_FOUND;
|
|
}
|
|
|
|
return {
|
|
item: user,
|
|
};
|
|
},
|
|
};
|