1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
Triggers = new Mongo.Collection('triggers');
Triggers.mutations({
rename(description) {
return { $set: { description } };
},
});
Triggers.allow({
update: function () {
// add custom authentication code here
return true;
},
insert: function () {
// add custom authentication code here
return true;
}
});
Triggers.helpers({
fromList() {
return Lists.findOne(this.fromId);
},
toList() {
return Lists.findOne(this.toId);
},
findList(title) {
return Lists.findOne({title:title});
},
labels() {
const boardLabels = this.board().labels;
const cardLabels = _.filter(boardLabels, (label) => {
return _.contains(this.labelIds, label._id);
});
return cardLabels;
}});
if (Meteor.isServer) {
Meteor.startup(() => {
const rules = Triggers.findOne({});
if(!rules){
Triggers.insert({group: "cards", activityType: "moveCard","fromId":-1,"toId":-1 });
}
});
}
Activities.after.insert((userId, doc) => {
const activity = Activities._transform(doc);
const matchedTriggers = Triggers.find({activityType: activity.activityType,fromId:activity.oldListId,toId:activity.listId})
if(matchedTriggers.count() > 0){
const card = activity.card();
const oldTitle = card.title;
const fromListTitle = activity.oldList().title;
Cards.direct.update({_id: card._id, listId: card.listId, boardId: card.boardId, archived: false},
{$set: {title: "[From "+fromListTitle +"] "+ oldTitle}});
}
});
|