1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00

feat: Log actions when task completion status changes

This commit is contained in:
Maksim Eltyshev 2025-05-20 21:17:51 +02:00
parent 5d53f44fe8
commit d5fd2fd33b
6 changed files with 64 additions and 0 deletions

View file

@ -15,6 +15,8 @@ const Types = {
MOVE_CARD: 'moveCard',
ADD_MEMBER_TO_CARD: 'addMemberToCard',
REMOVE_MEMBER_FROM_CARD: 'removeMemberFromCard',
COMPLETE_TASK: 'completeTask',
UNCOMPLETE_TASK: 'uncompleteTask',
};
const INTERNAL_NOTIFIABLE_TYPES = [Types.MOVE_CARD, Types.ADD_MEMBER_TO_CARD];