summaryrefslogtreecommitdiffstats
path: root/models/triggers.js
blob: 083c860e6996bb6432a7931927035cdd75ccb4f7 (plain)
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
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;
  },
  remove: function () {
    // add custom authentication code here
    return true;
  }
});


Triggers.helpers({


  getRule(){
    return Rules.findOne({triggerId:this._id});
  },

  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;
}});