mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
Gantt: Retain links created between tasks. Part 1: Database changes, not active in MIT Wekan.
Thanks to benjaminhrivera ! Related https://github.com/wekan/wekan/issues/2870#issuecomment-857115753
This commit is contained in:
parent
56efbf1de7
commit
07a3a0b388
1 changed files with 46 additions and 0 deletions
|
@ -445,6 +445,31 @@ Cards.attachSchema(
|
|||
type: Number,
|
||||
optional: true,
|
||||
},
|
||||
targetId_gantt: {
|
||||
/**
|
||||
* ID of card which is the child link in gantt view
|
||||
*/
|
||||
type: [String],
|
||||
optional: true,
|
||||
defaultValue: [],
|
||||
},
|
||||
linkType_gantt: {
|
||||
/**
|
||||
* ID of card which is the parent link in gantt view
|
||||
*/
|
||||
type: [Number],
|
||||
decimal: false,
|
||||
optional: true,
|
||||
defaultValue: [],
|
||||
},
|
||||
linkId_gantt: {
|
||||
/**
|
||||
* ID of card which is the parent link in gantt view
|
||||
*/
|
||||
type: [String],
|
||||
optional: true,
|
||||
defaultValue: [],
|
||||
},
|
||||
}),
|
||||
);
|
||||
|
||||
|
@ -468,6 +493,27 @@ Cards.allow({
|
|||
});
|
||||
|
||||
Cards.helpers({
|
||||
// Gantt https://github.com/wekan/wekan/issues/2870#issuecomment-857171127
|
||||
setGanttTargetId(sourceId, targetId, linkType, linkId){
|
||||
return Cards.update({ _id: sourceId}, {
|
||||
$push: {
|
||||
targetId_gantt: targetId,
|
||||
linkType_gantt : linkType,
|
||||
linkId_gantt: linkId
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
removeGanttTargetId(sourceId, targetId, linkType, linkId){
|
||||
return Cards.update({ _id: sourceId}, {
|
||||
$pull: {
|
||||
targetId_gantt: targetId,
|
||||
linkType_gantt : linkType,
|
||||
linkId_gantt: linkId
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
mapCustomFieldsToBoard(boardId) {
|
||||
// Map custom fields to new board
|
||||
return this.customFields.map(cf => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue