1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-22 14:49:43 +02:00

feat: SMTP integration and email notifications (#631)

This commit is contained in:
Edouard 2024-03-22 00:14:09 +01:00 committed by GitHub
parent 60ab09771d
commit 9f0fce098e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 188 additions and 4 deletions

View file

@ -21,6 +21,10 @@ module.exports = {
custom: valuesValidator,
required: true,
},
board: {
type: 'ref',
required: true,
},
request: {
type: 'ref',
},
@ -56,6 +60,9 @@ module.exports = {
userId,
action,
},
user: values.user,
board: inputs.board,
card: values.card,
}),
),
);