summaryrefslogtreecommitdiffstats
path: root/client/components/rules/rulesList.js
blob: e7b4660a5e7fa84f5afdb9d2ee9cfbc6de2f2057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
BlazeComponent.extendComponent({
  onCreated() {
    this.subscribe('allRules');
  },

  rules() {
    const boardId = Session.get('currentBoard');
    return Rules.find({
      "boardId": boardId
    });
  },
  events() {
    return [{}];
  },
}).register('rulesList');