1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/server/api/controllers/notifications/update.js
Maksim Eltyshev 2ee1166747 feat: Version 2
Closes #627, closes #1047
2025-05-10 02:09:06 +02:00

59 lines
1.1 KiB
JavaScript

/*!
* 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 = {
NOTIFICATION_NOT_FOUND: {
notificationNotFound: 'Notification not found',
},
};
module.exports = {
inputs: {
id: {
...idInput,
required: true,
},
isRead: {
type: 'boolean',
},
},
exits: {
notificationNotFound: {
responseType: 'notFound',
},
},
async fn(inputs) {
const { currentUser } = this.req;
let notification = await Notification.qm.getOneById(inputs.id, {
userId: currentUser.id,
});
if (!notification) {
throw Errors.NOTIFICATION_NOT_FOUND;
}
const values = _.pick(inputs, ['isRead']);
notification = await sails.helpers.notifications.updateOne.with({
values,
record: notification,
actorUser: currentUser,
request: this.req,
});
if (!notification) {
throw Errors.NOTIFICATION_NOT_FOUND;
}
return {
item: notification,
};
},
};